Skip to content

Moved out the exceptions into their own files #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
5 changes: 5 additions & 0 deletions src/Json/SchemaException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

namespace Json;

class SchemaException extends \Exception {};
5 changes: 5 additions & 0 deletions src/Json/ValidationException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

namespace Json;

class ValidationException extends \Exception {};
3 changes: 0 additions & 3 deletions src/Json/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Json;

class ValidationException extends \Exception {};
class SchemaException extends \Exception {};

/**
* JSON Schema Validator
*
Expand Down
2 changes: 2 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

require '../src/Json/ValidationException.php';
require '../src/Json/SchemaException.php';
require '../src/Json/Validator.php';

define('TEST_DIR', realpath(__DIR__));