View Javadoc
1 package org.smartcomps.twister.common.persistence; 2 3 /*** 4 * Thrown when an exception occurs when dealing with sessions and 5 * transactions. Mostly DB related exceptions. 6 */ 7 public class DBSessionException extends Exception { 8 9 public DBSessionException(String s) { 10 super(s); 11 } 12 13 public DBSessionException(String s, Throwable throwable) { 14 super(s, throwable); 15 } 16 17 public DBSessionException(Throwable throwable) { 18 super(throwable); 19 } 20 }

This page was automatically generated by Maven