1 package org.apache.ojb.broker.accesslayer; 2 3 17 18 import org.apache.ojb.broker.OJBRuntimeException; 19 20 25 public class OJBBatchUpdateException extends OJBRuntimeException 26 { 27 public OJBBatchUpdateException() 28 { 29 } 30 31 public OJBBatchUpdateException(String msg) 32 { 33 super(msg); 34 } 35 36 public OJBBatchUpdateException(Throwable cause) 37 { 38 super(cause); 39 } 40 41 public OJBBatchUpdateException(String msg, Throwable cause) 42 { 43 super(msg, cause); 44 } 45 } 46 | Popular Tags |