-
Notifications
You must be signed in to change notification settings - Fork 774
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It won't be possible to catch specific exceptions; users will need to catch `ValidationException`. The `NestedValidationException` will be removed in the next major version, but there's no alternative to it right now, so I didn't deprecate it.
- Loading branch information
1 parent
9740e24
commit 3c04d1d
Showing
153 changed files
with
153 additions
and
38 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
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see NestedValidationException} instead. | ||
*/ | ||
class AllOfException extends GroupedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AlnumException extends FilteredValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AlphaException extends FilteredValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AlwaysInvalidException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AlwaysValidException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AnyOfException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
* @author Emmerson Siqueira <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author João Torquato <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ArrayTypeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Emmerson Siqueira <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ArrayValException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Emmerson Siqueira <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class AttributeException extends NestedValidationException implements NonOmissibleException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Jens Segers <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class Base64Exception extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Carlos André Ferrari <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class BaseException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class BetweenException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
* | ||
* @author Devin Torres <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class BoolTypeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Emmerson Siqueira <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class BoolValException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Ronald Drenth <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class BsnException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CallException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* Exception class for CallableType rule. | ||
* | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CallableTypeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CallbackException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CharsetException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Kinn Coelho Julião <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CnhException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Leonn Leite <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CnpjException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Danilo Correa <[email protected]> | ||
* @author Kleber Hamada Sato <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ConsonantException extends FilteredValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
/** | ||
* @author Kirill Dlussky <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ContainsAnyException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ContainsException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Andre Ramaciotti <[email protected]> | ||
* @author Danilo Correa <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ControlException extends FilteredValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author João Torquato <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CountableException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CountryCodeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Jair Henrique <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CpfException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Jean Pimentel <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CreditCardException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Justin Hook <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class CurrencyCodeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Bruno Luiz da Silva <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DateException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DateTimeException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
/** | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DecimalException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DigitException extends FilteredValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DirectoryException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class DomainException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EachException extends NestedValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
* @author Eduardo Gulias Davis <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author Paul Karikari <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EmailException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EndsWithException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* @author Alexandre Gomes Gaigalas <[email protected]> | ||
* @author Henrique Moody <[email protected]> | ||
* @author Ian Nisbet <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EqualsException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
/** | ||
* @author Henrique Moody <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EquivalentException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
* @author Henrique Moody <[email protected]> | ||
* @author Jean Pimentel <[email protected]> | ||
* @author Paul Karikari <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class EvenException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ExecutableException extends ValidationException | ||
{ | ||
|
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
/** | ||
* @author Henrique Moody <[email protected]> | ||
* @author William Espindola <[email protected]> | ||
* @deprecated Using rule exceptions directly is deprecated, and will be removed in the next major version. Please use {@see ValidationException} instead. | ||
*/ | ||
final class ExistsException extends ValidationException | ||
{ | ||
|
Oops, something went wrong.