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
May be 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(@Opt @Opt String message)
      Constructur with some text information. User can additionally consult its stack trace.
      Parameters:
      message - the describing text. If null, then nothing will be printed.
    • ImplementationMissingException

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

      public ImplementationMissingException(@Opt @Opt String message, @Opt @Opt Throwable cause)
      Constructur with some text information and causing Throwable. User can additionally consult its stack trace.
      Parameters:
      message - the describing text. If null, then nothing will be printed.
      cause - the causing throwable.