Class MultiTest.SetupException

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    MultiTest

    public static class MultiTest.SetupException
    extends java.lang.Exception
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SetupException​(java.lang.String s)
      Construct a new SetupException object that signals failure with a corresponding message.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isPassed()
      Determines whether this SetupException signals failure or not.
      static MultiTest.SetupException notApplicable​(java.lang.String msg)
      Creates SetupException object which indicates that this test is not applicable.
      • 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

      • SetupException

        public SetupException​(java.lang.String s)
        Construct a new SetupException object that signals failure with a corresponding message.
        Parameters:
        s - the string containing a comment
    • Method Detail

      • notApplicable

        public static MultiTest.SetupException notApplicable​(java.lang.String msg)
        Creates SetupException object which indicates that this test is not applicable. The cases when it is needed are rare, so please think twice whether you really need it.
        Parameters:
        msg - the string containing a comment
      • isPassed

        public boolean isPassed()
        Determines whether this SetupException signals failure or not.