|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--org.jutil.java.collections.ZeroDimensionException
A class of exceptions indicating the attempt to use a class in this package with an object array that has at least one dimension equal to zero.
| Field Summary | |
static java.lang.String |
CVS_REVISION
|
| Constructor Summary | |
ZeroDimensionException(java.lang.Object[] array)
// The array that causes a ZeroDimensionException // can not be null public invariant getArray() != null; // pre array != null; // The array of this ZeroDimensionException is set to post getArray() == array; Initialize a new ZeroDimensionException with the given array. |
|
ZeroDimensionException(java.lang.Object[] array,
java.lang.String msg)
// pre array != null; // The array of this ZeroDimensionException is set to post getArray() == array; // The message of this ZeroDimensionException is set to post getMessage() == msg; Initialize a new ZeroDimensionException with the given array and message. |
|
| Method Summary | |
java.lang.Object[] |
getArray()
Return the array that caused this ZeroDimensionException. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final java.lang.String CVS_REVISION
| Constructor Detail |
public ZeroDimensionException(java.lang.Object[] array)
public ZeroDimensionException(java.lang.Object[] array,
java.lang.String msg)
| Method Detail |
public java.lang.Object[] getArray()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||