1 17 package org.apache.geronimo.kernel; 18 19 22 public class NoSuchAttributeException extends KernelException { 23 public NoSuchAttributeException() { 24 } 25 26 public NoSuchAttributeException(String message) { 27 super(message); 28 } 29 30 public NoSuchAttributeException(String message, Throwable cause) { 31 super(message, cause); 32 } 33 34 public NoSuchAttributeException(Throwable cause) { 35 super(cause); 36 } 37 } 38 | Popular Tags |