1 17 18 package org.apache.geronimo.transaction.manager; 19 20 26 public class LogException extends Exception { 27 28 public LogException() { 29 super(); 30 } 31 32 public LogException(String message) { 33 super(message); 34 } 35 36 public LogException(String message, Throwable cause) { 37 super(message, cause); 38 } 39 40 public LogException(Throwable cause) { 41 super(cause); 42 } 43 } 44 | Popular Tags |