Package elki.data.type
Class NoSupportedDataTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- elki.data.type.NoSupportedDataTypeException
-
- All Implemented Interfaces:
java.io.Serializable
public class NoSupportedDataTypeException extends java.lang.IllegalStateException
Exception thrown when no supported data type was found.- Since:
- 0.4.0
- Author:
- Erich Schubert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version.private java.util.Collection<TypeInformation>
types
Available types
-
Constructor Summary
Constructors Constructor Description NoSupportedDataTypeException(TypeInformation type, java.util.Collection<TypeInformation> types)
Constructor.NoSupportedDataTypeException(java.lang.String string)
Constructor with string message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version.- See Also:
- Constant Field Values
-
types
private final transient java.util.Collection<TypeInformation> types
Available types
-
-
Constructor Detail
-
NoSupportedDataTypeException
public NoSupportedDataTypeException(TypeInformation type, java.util.Collection<TypeInformation> types)
Constructor.- Parameters:
type
- Requested typetypes
- Available types.
-
NoSupportedDataTypeException
public NoSupportedDataTypeException(java.lang.String string)
Constructor with string message. If possible, use the type parameter instead!- Parameters:
string
- Error message
-
-