Klasse NotImplemented

java.lang.Object
de.srsoftware.tools.NotImplemented

public class NotImplemented extends Object
helper class to easily create no-implementd excaptions
  • Methodendetails

    • notImplemented

      public static RuntimeException notImplemented(String message)
      create a runtime exception with a "not implemented: …" message
      Parameter:
      message - the message to append after the colon
      Gibt zurück:
      the created runtime exception
    • notImplemented

      public static RuntimeException notImplemented(Class<?> clazz, String method)
      create a runtime exception with a "not implemented: [class].[method]" message
      Parameter:
      clazz - the replacement for [class]
      method - the replacement for [method]
      Gibt zurück:
      the created runtime exception
    • notImplemented

      public static RuntimeException notImplemented(Object o, String method)
      create a runtime exception with a "not implemented: [class].[method]" message
      Parameter:
      o - the object whose class will be listed
      method - the replacement for [method]
      Gibt zurück:
      the created runtime exception