Class DataException

All Implemented Interfaces:
Serializable

public class DataException extends IllegalArgumentException
Unchecked exception thrown when a data structure for use with SAMP does not have the correct form.
Since:
15 Jul 2008
Author:
Mark Taylor
See Also:
  • Constructor Details

    • DataException

      public DataException()
      Constructs an exception with no message.
    • DataException

      public DataException(String msg)
      Consructs an exception with a given message.
      Parameters:
      msg - message
    • DataException

      public DataException(Throwable e)
      Constructs an exception with a given cause.
      Parameters:
      e - cause of this exception
    • DataException

      public DataException(String msg, Throwable e)
      Constructs an exception with a given message and cause.
      Parameters:
      msg - message
      e - cause of this exception