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 Summary
Constructors 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 Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchColumnException
public 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 tablerequestedColumns
- the request column names that were not found
-
NoSuchColumnException
Thrown when an operation can not find a required column.- Parameters:
presentColumns
- the column names present in the tablerequestedColumn
- the request column name that was not found
-