Examples of DkExceptionContext


Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkDataIntegrityException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkUnknownIdentifierException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkInternalLanguageException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkInternalException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkConversionException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkBadParametersException(final String message, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * {@link #UNKNWOWN_ERROR_MESSAGE}
   */
  public DkException()
  {
    super(UNKNWOWN_ERROR_MESSAGE);
    this.context = new DkExceptionContext();
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   *           the message for the exception
   */
  public DkException(final String message)
  {
    super(message);
    this.context = new DkExceptionContext();
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   *           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);
  }
View Full Code Here

Examples of com.daikit.commons.shared.exception.context.DkExceptionContext

   * @param cause
   *           the cause
   */
  public DkUserLoggedChangedException(final String message, final String newLoggedUserId, final Throwable cause)
  {
    super(new DkExceptionContext(message), cause);
    setNewLoggedUserId(newLoggedUserId);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.