1 24 25 package org.objectweb.cjdbc.scenario.tools.testlet; 26 27 34 public class TestLetException extends Exception  35 { 36 37 40 public TestLetException() 41 { 42 super(); 43 } 44 45 50 public TestLetException(String message) 51 { 52 super(message); 53 } 54 55 61 public TestLetException(String message, Throwable cause) 62 { 63 super(message, cause); 64 } 65 66 71 public TestLetException(Throwable cause) 72 { 73 super(cause); 74 } 75 } | Popular Tags |