60616263646566
* @param cause * the cause */ public DkServerUnreachableException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
61626364656667
* @param cause * the cause */ public DkUnknownErrorException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
46474849505152
* @param message * the message */ public DkUnsupportedCaseException(final String message) { super(new DkExceptionContext(message)); }
70717273747576
* @param cause * the cause */ public DkUnsupportedCaseException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
* @param cause * the cause */ public DkInternalDatabaseException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
57585960616263
* @param cause * the cause */ public DkInvalidIdentifierException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
73747576777879
* @param cause * the cause */ public DkConfigurationException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
* @param message * the message */ public DkUnsupportedMethodException(final String message) { super(new DkExceptionContext(message)); }
* @param cause * the cause */ public DkUnsupportedMethodException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }
62636465666768
* @param cause * the cause */ public DkDataValidationException(final String message, final Throwable cause) { super(new DkExceptionContext(message), cause); }