1 package org.apache.ojb.broker.metadata; 2 3 17 18 import org.apache.ojb.broker.PersistenceBrokerException; 19 24 public class MetadataException 25 extends PersistenceBrokerException 26 { 27 28 public MetadataException() 29 { 30 super(); 31 } 32 33 public MetadataException(Throwable t) 34 { 35 super(t); 36 } 37 38 public MetadataException(String message) 39 { 40 super(message); 41 } 42 43 public MetadataException(String message,Throwable t) 44 { 45 super(message,t); 46 } 47 48 } 49 | Popular Tags |