1 19 20 28 29 package org.netbeans.modules.xml.wsdl.ui.property.model; 30 31 35 public class PropertyModelException extends Exception { 36 37 38 public PropertyModelException(Throwable cause) { 39 super(cause); 40 } 41 42 public PropertyModelException(String message) { 43 super(message); 44 } 45 46 public PropertyModelException(String message, Throwable cause) { 47 super(message, cause); 48 } 49 } 50 | Popular Tags |