This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/master by this push:
new a9609be EMPIREDB-282 fixed typo and improved error message text
a9609be is described below
commit a9609be94a15c646ecb2721689b0e864dc6b45e5
Author: Rainer Döbele <[email protected]>
AuthorDate: Wed Apr 1 11:39:19 2020 +0200
EMPIREDB-282
fixed typo and improved error message text
---
.../apache/empire/db/exceptions/FieldValueOutOfRangeException.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/empire-db/src/main/java/org/apache/empire/db/exceptions/FieldValueOutOfRangeException.java
b/empire-db/src/main/java/org/apache/empire/db/exceptions/FieldValueOutOfRangeException.java
index aff8fab..ddad1af 100644
---
a/empire-db/src/main/java/org/apache/empire/db/exceptions/FieldValueOutOfRangeException.java
+++
b/empire-db/src/main/java/org/apache/empire/db/exceptions/FieldValueOutOfRangeException.java
@@ -29,9 +29,9 @@ public class FieldValueOutOfRangeException extends
FieldValueException
private static final long serialVersionUID = 1L;
public static final ErrorType outOfRangeErrorType = new
ErrorType("error.db.fieldValueOutOfRange", "The value supplied for field {0}
is out of range.");
- public static final ErrorType notInRangeErrorType = new
ErrorType("error.db.fieldValueNotInRagen", "The value supplied for field {0}
must be between {1} and {2}.");
- public static final ErrorType valueTooBigErrorType = new
ErrorType("error.db.fieldValueTooBig", "The value supplied for field {0}
must be less or equal {1}.");
- public static final ErrorType valueTooSmallErrorType = new
ErrorType("error.db.fieldValueTooSmall", "The value supplied for field {0}
must be more or equal {1}.");
+ public static final ErrorType notInRangeErrorType = new
ErrorType("error.db.fieldValueNotInRange", "The value supplied for field {0}
must be between {1} and {2}.");
+ public static final ErrorType valueTooBigErrorType = new
ErrorType("error.db.fieldValueTooBig", "The value supplied for field {0}
must not be greater than {1}.");
+ public static final ErrorType valueTooSmallErrorType = new
ErrorType("error.db.fieldValueTooSmall", "The value supplied for field {0}
must not be smaller than {1}.");
public FieldValueOutOfRangeException(Column col)
{