Package Torello.Java
Class StrCmprException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- Torello.Java.StrCmprException
-
- All Implemented Interfaces:
java.io.Serializable
public class StrCmprException extends java.lang.IllegalArgumentException
An exception that performs a little bit of passed-parameter checking for the classStrCmpr
.
This class provides somepublic final
"inspection & convenience" fields which should guarantee to avoid havingnull
values when thisException
is thrown by an internal method. If as a programmer, you intended to extend use of this class, make sure to pass valid-information & valid-data, to the constructors of this class.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Java/StrCmprException.java
- Open New Browser-Tab: Torello/Java/StrCmprException.java
File Size: 6,364 Bytes Line Count: 151 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field static long
serialVersionUID
'final'
Exception Convenience FieldsModifier and Type Field Vector<String>
compareStrVec
int
i
-
Constructor Summary
Constructors Constructor Description StrCmprException(String message, String[] compareStr, int i)
Constructs a new exception with the specified detail'message'
, and the twopublic, final
parameters:compareStr
andi
.StrCmprException(String message, Throwable cause, String[] compareStr, int i)
Constructs a new exception with the specified detail'message'
, cause-chainThrowable
, and the twopublic, final
parameters:compareStr
andi
.
-
Method Summary
'static'
Exception Check MethodsModifier and Type Method static void
check(String[] compareStr)
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable
. Using theSerializable
Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
Note that Java'sjava.lang.Exception
andjava.lang.Error
classes implement theSerializable interface
, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
public static final long serialVersionUID = 1;
-
compareStrVec
public final java.util.Vector<java.lang.String> compareStrVec
This field is provided to the user as a matter of convenience. All instances of thisException
ought to guarantee that when an instance is thrown - any & all "Convenience Fields" have been properly set.
If this package is extended, or if this exception is used elsewhere, try to remember to not to accidentally leave this field null when using this class' constructors.
In Summary:
All this is really trying to explain is that, when debugging your code, if in the analysis of a particularException
, that analysis causes another exception throw (NullPointerException
) - BECAUSE THIS CONVENIENCE FIELD WAS LEFT NULL - you would likely get pretty angry.
This should contain the list of compare-String's
passed for a parameter list toclass StrCmpr
.
-
i
public final int i
This field is provided to the user as a matter of convenience. All instances of thisException
ought to guarantee that when an instance is thrown - any & all "Convenience Fields" have been properly set.
If this package is extended, or if this exception is used elsewhere, try to remember to not to accidentally leave this field null when using this class' constructors.
In Summary:
All this is really trying to explain is that, when debugging your code, if in the analysis of a particularException
, that analysis causes another exception throw (NullPointerException
) - BECAUSE THIS CONVENIENCE FIELD WAS LEFT NULL - you would likely get pretty angry.
This field is intended to store the index into thecompareStrVec
of the compare-String
that caused the exception throw in the first place.
-
-
Constructor Detail
-
StrCmprException
public StrCmprException(java.lang.String message, java.lang.String[] compareStr, int i)
Constructs a new exception with the specified detail'message'
, and the twopublic, final
parameters:compareStr
andi
.- Parameters:
message
- This should be a well-formatted message informing the user what has occurred.compareStr
- This SHOULD BE the list of compare-String's
that were passed to theclass StrCmpr
methods that may have contained a null value, or was empty.
This parameter should not be left null. If it were accidentally left null, this could force exception-handling code to to throw an exception itself - while checking exceptions! Note that checking the input to this constructor does occur, and if this parameter is passed a null value, an instance ofTorello.Java.ExceptionCheckError
will throw.i
- This is the index into the'compareStr'
var-args parameter list that cause the exception to throw. This value must be between0
andcomparestr.length - 1
, orExceptionCheckError
will throw.- Throws:
ExceptionCheckError
- If parameter'compareStr'
is passed null, or if parameter'i'
is not a valid array-index into'compareStr'
.- See Also:
compareStrVec
,i
-
StrCmprException
public StrCmprException(java.lang.String message, java.lang.Throwable cause, java.lang.String[] compareStr, int i)
Constructs a new exception with the specified detail'message'
, cause-chainThrowable
, and the twopublic, final
parameters:compareStr
andi
.- Parameters:
message
- This should be a well-formatted message informing the user what has occurred.cause
- This is sometimes used to "chain" exceptions in multi-threaded or heavily I/O related code.compareStr
- This SHOULD BE the list of compare-String's
that were passed to aclass StrCmpr
method that may have contained a null value, or was empty.
This parameter should not be left null. If it were accidentally left null, this could force exception-handling code to to throw an exception itself - while checking exceptions! Note that checking the input to this constructor does occur, and if this parameter is passed a null value, an instance ofTorello.Java.ExceptionCheckError
will throw.i
- This is the index into the'compareStr'
var-args parameter list that cause the exception to throw. This value must be between0
andcomparestr.length - 1
, orExceptionCheckError
will throw.- Throws:
ExceptionCheckError
- If parameter'compareStr'
is passed null, or if parameter'i'
is not a valid array-index into'compareStr'
.- See Also:
compareStrVec
,i
-
-
Method Detail
-
check
public static void check(java.lang.String[] compareStr)
This will do a simple test of the compare-String's
to make sure none of them are null, and that there are at least oneString
in thearray
.
Explanation:
It is a subtle issue, but likely better to throw exceptions when one of the Varargs to aString
comparison is'null'
. Since there is likely no general-convention or agreement on whatnull
in the presence oflogical AND, OR, NOT, XOR, NAND
really means, throwing aStrCmprException
when even one var-args string-parameter is'null'
actually makes the most sense.- Parameters:
compareStr
- This should be thevar-args String[]
array-parameter that was passed to a search method- Throws:
TCCompareStrException
- If any of the elements ofcompareStr
are null, or if the array is zero-length.- Code:
- Exact Method Body:
if (compareStr == null) throw new NullPointerException ("The compareStr varags parameter, itself, was null."); if (compareStr.length == 0) throw new StrCmprException( "You have passed zero-arguments to a StrCmpr method's var-args String... parameter. " + "You must pass at least one non-null compare-string", compareStr, 0 ); for (int i=0; i < compareStr.length; i++) if (compareStr[i] == null) throw new StrCmprException( "One of the compare-strings passed to a search-method's var-args String... parameter " + "was null. This is not allowed.", compareStr, i );
-
-