View Javadoc
1 package org.codehaus.nanning.attribute; 2 3 public class AttributeException extends RuntimeException { 4 public AttributeException(String message) { 5 super(message); 6 } 7 8 ///CLOVER:OFF 9 public AttributeException() { 10 } 11 12 public AttributeException(String message, Throwable cause) { 13 super(message, cause); 14 } 15 16 public AttributeException(Throwable cause) { 17 super(cause); 18 } 19 ///CLOVER:ON 20 }

This page was automatically generated by Maven