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:
java.io.Serializable
- Direct Known Subclasses:
CsvBadConverterException
,CsvBeanIntrospectionException
,CsvRecursionException
public class CsvRuntimeException extends java.lang.RuntimeException
The base class for all unchecked exceptions in opencsv.- Author:
- Andrew Rucker Jones
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CsvRuntimeException()
Nullary constructor.CsvRuntimeException(java.lang.String message)
Constructor with a message.CsvRuntimeException(java.lang.String message, java.lang.Throwable e)
Constructor with a message and throwable
-
-
-
Constructor Detail
-
CsvRuntimeException
public CsvRuntimeException()
Nullary constructor. Does nothing.
-
CsvRuntimeException
public CsvRuntimeException(java.lang.String message)
Constructor with a message.- Parameters:
message
- A human-readable error message
-
CsvRuntimeException
public CsvRuntimeException(java.lang.String message, java.lang.Throwable e)
Constructor with a message and throwable- Parameters:
message
- A human-readable error messagee
- - Throwable that caused the issue.
-
-