1 9 package org.jboss.portal.common.command; 10 11 17 public class NoSuchAttachmentException extends RuntimeException  18 { 19 20 public NoSuchAttachmentException() 21 { 22 } 23 24 public NoSuchAttachmentException(String message) 25 { 26 super(message); 27 } 28 29 public NoSuchAttachmentException(String message, Throwable cause) 30 { 31 super(message, cause); 32 } 33 34 public NoSuchAttachmentException(Throwable cause) 35 { 36 super(cause); 37 } 38 } 39 | Popular Tags |