1 4 package com.tc.objectserver.tx; 5 6 public class NoSuchBatchException extends Exception { 7 8 public NoSuchBatchException() { 9 super(); 10 } 11 12 public NoSuchBatchException(String message) { 13 super(message); 14 } 15 16 public NoSuchBatchException(String message, Throwable cause) { 17 super(message, cause); 18 } 19 20 public NoSuchBatchException(Throwable cause) { 21 super(cause); 22 } 23 24 } 25 | Popular Tags |