Class ImplementationMissingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
eu.bandm.tools.annotations.ImplementationMissingException
All Implemented Interfaces:
Serializable

public class ImplementationMissingException extends RuntimeException
Is thrown when a feature or variant is not yet implemented but foreseen.
Since:
1.0
See Also:
  • Constructor Details

    • ImplementationMissingException

      public ImplementationMissingException()
      Constructur with no information. User must consult its stack trace.
    • ImplementationMissingException

      public ImplementationMissingException(String s)
      Constructur with some text information. User can additionally consult its stack trace.
      Parameters:
      s - describing text.
    • ImplementationMissingException

      public ImplementationMissingException(Throwable c)
      Constructur with causing Throwable. User can additionally consult its stack trace.
      Parameters:
      c - the causing throwable.
    • ImplementationMissingException

      public ImplementationMissingException(String s, Throwable c)
      Constructur with some text information and causing Throwable. User can additionally consult its stack trace.
      Parameters:
      s - describing text.
      c - the causing throwable.