1 28 29 package com.caucho.transaction; 30 31 34 public class TransactionRuntimeException extends RuntimeException { 35 38 public TransactionRuntimeException() 39 { 40 } 41 42 45 public TransactionRuntimeException(String msg) 46 { 47 super(msg); 48 } 49 50 53 public TransactionRuntimeException(String msg, Throwable cause) 54 { 55 super(msg, cause); 56 } 57 58 61 public TransactionRuntimeException(Throwable e) 62 { 63 super(e); 64 } 65 } 66 | Popular Tags |