58596061626364
* @param cause * the cause */ public DkDataIntegrityException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
71727374757677
* @param cause * the cause */ public DkUnknownIdentifierException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
61626364656667
* @param cause * the cause */ public DkInternalLanguageException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
60616263646566
* @param cause * the cause */ public DkInternalException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
* @param cause * the cause */ public DkConversionException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
57585960616263
* @param cause * the cause */ public DkBadParametersException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
44454647484950
* {@link #UNKNWOWN_ERROR_MESSAGE} */ public DkException() { super(UNKNWOWN_ERROR_MESSAGE); this.context = new DkExceptionContext(); }
* the message for the exception */ public DkException(final String message) { super(message); this.context = new DkExceptionContext(); }
106107108109110111112
* is permitted, and indicates that the cause is nonexistent or unknown.) */ public DkException(final String message, final Throwable cause) { super(message, cause); this.context = new DkExceptionContext(message); }
8283848586878889
* @param cause * the cause */ public DkUserLoggedChangedException(final String message, final String newLoggedUserId, final Throwable cause) { super(new DkExceptionContext(message), cause); setNewLoggedUserId(newLoggedUserId); }