View Javadoc
1   package com.kodexa.client;
2   
3   /**
4    * An exception that is thrown if issues occur within the Kodexa client
5    */
6   public class KodexaException extends RuntimeException {
7   
8       /**
9        * Create a new exception with the provided message and cause
10       *
11       * @param message
12       * @param cause
13       */
14      public KodexaException(String message, Throwable cause) {
15          super(message, cause);
16      }
17  
18      /**
19       * Create an exception with a message and no cause
20       *
21       * @param message
22       */
23      public KodexaException(String message) {
24          super(message);
25      }
26  
27  }