Package de.srsoftware.tools
Klasse NotImplemented
java.lang.Object
de.srsoftware.tools.NotImplemented
helper class to easily create no-implementd excaptions
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic RuntimeExceptionnotImplemented(Class<?> clazz, String method) create a runtime exception with a "not implemented: [class].static RuntimeExceptionnotImplemented(Object o, String method) create a runtime exception with a "not implemented: [class].static RuntimeExceptionnotImplemented(String message) create a runtime exception with a "not implemented: …" message
-
Methodendetails
-
notImplemented
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
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
create a runtime exception with a "not implemented: [class].[method]" message- Parameter:
o- the object whose class will be listedmethod- the replacement for [method]- Gibt zurück:
- the created runtime exception
-