Class CSVException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CSVException
    extends java.io.IOException
    Signals a CSV exception. For example, this exception is thrown when parsing invalid input.
    Since:
    1.12.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      CSVException​(java.lang.String format, java.lang.Object... args)
      Constructs a new instance with a formatted message.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CSVException

        public CSVException​(java.lang.String format,
                            java.lang.Object... args)
        Constructs a new instance with a formatted message.
        Parameters:
        format - A Formatter format string.
        args - See String.format(String, Object...).
        Throws:
        java.util.IllegalFormatException - See String.format(String, Object...).