Package com.illumon.iris.db.v2
Class NoSuchColumnException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
com.illumon.iris.db.v2.NoSuchColumnException
- All Implemented Interfaces:
- Serializable
public class NoSuchColumnException extends IllegalArgumentException
Exception thrown when a column is not found.
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description NoSuchColumnException(Collection<String> presentColumns, String requestedColumn)Thrown when an operation can not find a required column.NoSuchColumnException(Collection<String> presentColumns, Collection<String> requestedColumns)Thrown when an operation can not find a required column.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NoSuchColumnExceptionpublic NoSuchColumnException(Collection<String> presentColumns, Collection<String> requestedColumns)Thrown when an operation can not find a required column.- Parameters:
- presentColumns- the column names present in the table
- requestedColumns- the request column names that were not found
 
- 
NoSuchColumnExceptionThrown when an operation can not find a required column.- Parameters:
- presentColumns- the column names present in the table
- requestedColumn- the request column name that was not found
 
 
-