Class SampleException

  • All Implemented Interfaces:
    java.io.Serializable

    
    public class SampleException
    extends RuntimeException
                        

    Thrown when some sample processing occurred

    Since:

    3.0

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Throwable

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

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

      • SampleException

        SampleException()
        Instantiates a new sample exception.
      • SampleException

        SampleException(String message)
        Instantiates a new sample exception with the specified message.
        Parameters:
        message - the message
      • SampleException

        SampleException(Throwable cause)
        Instantiates a new sample exception.
        Parameters:
        cause - the cause
      • SampleException

        SampleException(String message, Throwable cause)
        Instantiates a new sample exception.
        Parameters:
        message - the message
        cause - the cause
    • Method Detail