Package com.opencsv.exceptions
Class CsvRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.opencsv.exceptions.CsvRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CsvBadConverterException
,CsvBeanIntrospectionException
,CsvRecursionException
The base class for all unchecked exceptions in opencsv.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionNullary constructor.CsvRuntimeException
(String message) Constructor with a message.CsvRuntimeException
(String message, Throwable e) Constructor with a message and throwable -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
CsvRuntimeException
public CsvRuntimeException()Nullary constructor. Does nothing. -
CsvRuntimeException
Constructor with a message.- Parameters:
message
- A human-readable error message
-
CsvRuntimeException
Constructor with a message and throwable- Parameters:
message
- A human-readable error messagee
- - Throwable that caused the issue.
-