This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from skroczek/rfc-compliance
Increase rfc compliance
- Loading branch information
Showing
5 changed files
with
171 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace TrueBV\Exception; | ||
|
||
/** | ||
* Class DomainOutOfBoundsException | ||
* @package TrueBV\Exception | ||
* @author Sebastian Kroczek <sk@xbug.de> | ||
*/ | ||
class DomainOutOfBoundsException extends OutOfBoundsException | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace TrueBV\Exception; | ||
|
||
/** | ||
* Class LabelOutOfBoundsException | ||
* @package TrueBV\Exception | ||
* @author Sebastian Kroczek <sk@xbug.de> | ||
*/ | ||
class LabelOutOfBoundsException extends OutOfBoundsException | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace TrueBV\Exception; | ||
|
||
/** | ||
* Class OutOfBoundsException | ||
* @package TrueBV\Exception | ||
* @author Sebastian Kroczek <sk@xbug.de> | ||
*/ | ||
class OutOfBoundsException extends \RuntimeException | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters