|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.UnsupportedOperationException
abk.core.exception.NotImplementedException
public class NotImplementedException
Extiende la excepción UnsupportedOperationException para explicar que el desarrollador aún no podido completar la implementación de una determinada funcionalidad, o que estando implementada, no es accesible públicamente.
UnsupportedOperationException
,
Serialized FormField Summary | |
---|---|
private static String |
DEFAULT_MESSAGE
Mensaje por defecto. |
Constructor Summary | |
---|---|
NotImplementedException()
Constructor con el mensaje por defecto. |
|
NotImplementedException(Class<?> clazz)
Constructor para el caso de que se trate la implementación de una clase o interfaz concreta. |
|
NotImplementedException(Class<?> clazz,
Throwable t)
Constructor para el caso de que se trate la implementación de una clase o interfaz concreta y sea consecuencia de la captura de un error. |
|
NotImplementedException(String pattern,
Object... args)
Constructor que define el mensaje a partir de un patrón de formato de mensaje y los argumentos para el mensaje. |
|
NotImplementedException(String pattern,
Throwable t,
Object... args)
Constructor que define el mensaje a partir de un patrón de formato de mensaje, una causa que origina esta excepción, y los argumentos para el mensaje. |
|
NotImplementedException(Throwable t)
Constructor a partir de una causa que origina la creación de esta instancia. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final String DEFAULT_MESSAGE
Constructor Detail |
---|
public NotImplementedException()
public NotImplementedException(Throwable t)
t
- Causa que origina esta excepción.public NotImplementedException(String pattern, Throwable t, Object... args)
pattern
- Patrón del mensaje.t
- Causa que origina esta excepción.args
- Argumentos para dar formato al mensaje.public NotImplementedException(String pattern, Object... args)
pattern
- Patrón del mensaje.args
- Argumentos para dar formato al mensaje.public NotImplementedException(Class<?> clazz)
clazz
- Clase o interfaz pendiente de implementar.public NotImplementedException(Class<?> clazz, Throwable t)
clazz
- Clase o interfaz pendiente de implementar.t
- Causa que origina esta excepción.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |