1 37 38 package com.sun.j2ee.blueprints.catalog; 39 40 45 public class CatalogException extends RuntimeException { 46 47 public CatalogException() {} 48 public CatalogException(String msg) { super(msg); } 49 public CatalogException(String msg, Throwable cause) { 50 super(msg, cause); 51 } 52 public CatalogException(Throwable cause) { 53 super(cause); 54 } 55 } 56 | Popular Tags |