Package jmri.jmrit.logixng
Class Table.RowNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- jmri.jmrit.logixng.Table.RowNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing interface:
- Table
public static class Table.RowNotFoundException extends java.lang.IllegalArgumentException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RowNotFoundException(java.lang.String name)
Constructs aRowNotFoundException
.RowNotFoundException(java.lang.String name, java.lang.Throwable cause)
Constructs aRowNotFoundException
.
-
-
-
Constructor Detail
-
RowNotFoundException
public RowNotFoundException(java.lang.String name)
Constructs aRowNotFoundException
.- Parameters:
name
- the name of the row.
-
RowNotFoundException
public RowNotFoundException(java.lang.String name, java.lang.Throwable cause)
Constructs aRowNotFoundException
.Note that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
name
- the name of the row.cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-