View Javadoc

1   package com.atlassian.sal.api.rdbms;
2   
3   /**
4    * This exception is thrown by {@link com.atlassian.sal.api.rdbms} implementations
5    * in cases when interaction with a database fails
6    *
7    * @since v3.0
8    */
9   public class RdbmsException extends RuntimeException
10  {
11      public RdbmsException(final String message)
12      {
13          super(message);
14      }
15  
16      public RdbmsException(final String message, final Throwable cause)
17      {
18          super(message, cause);
19      }
20  
21      public RdbmsException(final Throwable cause)
22      {
23          super(cause);
24      }
25  }