Package jmri.jmrit.logixng
Class Table.ColumnNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- jmri.jmrit.logixng.Table.ColumnNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing interface:
- Table
public static class Table.ColumnNotFoundException extends java.lang.IllegalArgumentException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ColumnNotFoundException(java.lang.String name)
Constructs aColumnNotFoundException
.ColumnNotFoundException(java.lang.String name, java.lang.Throwable cause)
Constructs aColumnNotFoundException
.
-
-
-
Constructor Detail
-
ColumnNotFoundException
public ColumnNotFoundException(java.lang.String name)
Constructs aColumnNotFoundException
.- Parameters:
name
- the name of the row.
-
ColumnNotFoundException
public ColumnNotFoundException(java.lang.String name, java.lang.Throwable cause)
Constructs aColumnNotFoundException
.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.)
-
-