1 20 package org.enhydra.barracuda.contrib.dbroggisch.page; 21 22 import org.enhydra.barracuda.core.event.EventException; 23 24 25 29 public class PageException extends EventException { 30 31 public PageException() { 32 super(); 33 } 34 35 public PageException(String msg) { 36 super(msg); 37 } 38 39 public PageException(String msg, Exception ibaseException) { 40 super(msg, ibaseException); 41 } 42 43 } 44 | Popular Tags |