1 19 package org.netbeans.modules.xslt.model; 20 21 22 26 public class InvalidAttributeValueException extends Exception { 27 28 29 private static final long serialVersionUID = 5990879376051438447L; 30 31 32 public InvalidAttributeValueException( String message, Throwable cause ) { 33 super(message, cause); 34 } 35 36 37 public InvalidAttributeValueException( String message ) { 38 super(message); 39 } 40 41 42 public InvalidAttributeValueException( Throwable throwable ) { 43 super( throwable ); 44 } 45 46 52 public InvalidAttributeValueException( String message, String attributeValue, 53 Throwable cause ) 54 { 55 this( message , cause ); 56 myAttributeValue = attributeValue ; 57 } 58 59 64 public InvalidAttributeValueException( String message, String attributeValue ) 65 { 66 this( message ); 67 myAttributeValue = attributeValue ; 68 } 69 70 73 public String getAttributeValue() { 74 return myAttributeValue; 75 } 76 77 private String myAttributeValue; 78 } 79 | Popular Tags |