Package org.supercsv.exception
Class SuperCsvReflectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.supercsv.exception.SuperCsvException
-
- org.supercsv.exception.SuperCsvReflectionException
-
- All Implemented Interfaces:
java.io.Serializable
public class SuperCsvReflectionException extends SuperCsvException
Wraps the following reflection related checked exceptions:ClassNotFoundException, IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException
- Since:
- 1.30
- Author:
- Kasper B. Graversen
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuperCsvReflectionException(java.lang.String msg)
Constructs a new SuperCsvReflectionException.SuperCsvReflectionException(java.lang.String msg, java.lang.Throwable t)
Constructs a new SuperCsvReflectionException.
-
Method Summary
-
Methods inherited from class org.supercsv.exception.SuperCsvException
getCsvContext, toString
-
-
-
-
Constructor Detail
-
SuperCsvReflectionException
public SuperCsvReflectionException(java.lang.String msg)
Constructs a new SuperCsvReflectionException.- Parameters:
msg
- the exception message
-
SuperCsvReflectionException
public SuperCsvReflectionException(java.lang.String msg, java.lang.Throwable t)
Constructs a new SuperCsvReflectionException.- Parameters:
msg
- the exception messaget
- the nested exception
-
-