1 19 20 package org.netbeans.modules.xml.xam.locator; 21 22 26 public class CatalogModelException extends Exception { 27 static final long serialVersionUID = 19800701l; 28 31 public CatalogModelException() { 32 } 33 34 35 40 public CatalogModelException(String msg) { 41 super(msg); 42 } 43 44 public CatalogModelException(Throwable cause){ 45 super(); 46 this.initCause(cause); 47 } 48 } 49 | Popular Tags |