1 package org.apache.ojb.broker.platforms; 2 3 17 18 import org.apache.ojb.broker.OJBException; 19 20 public class PlatformException extends OJBException 21 { 22 public PlatformException(String message) 23 { 24 super(message); 25 } 26 27 public PlatformException(Throwable cause) 28 { 29 super(cause); 30 } 31 32 public PlatformException(String message, Throwable cause) 33 { 34 super(message, cause); 35 } 36 } 37 | Popular Tags |