1 30 package com.genimen.djeneric.repository.exceptions; 31 32 import com.genimen.djeneric.repository.sqlparser.core.ParseException; 33 34 public class TransactionalException extends ParseException 35 { 36 private static final long serialVersionUID = 3617294532190745141L; 37 38 public TransactionalException() 39 { 40 super(); 41 } 42 43 public TransactionalException(String message) 44 { 45 super(message); 46 } 47 48 public TransactionalException(Exception x) 49 { 50 super(x); 51 } 52 53 } | Popular Tags |