1 22 package org.jboss.profileservice.spi; 23 24 30 public class NoSuchDeploymentException extends Exception  31 { 32 private static final long serialVersionUID = 1; 33 34 public NoSuchDeploymentException() 35 { 36 } 37 38 public NoSuchDeploymentException(String msg) 39 { 40 super(msg); 41 } 42 43 public NoSuchDeploymentException(String msg, Throwable cause) 44 { 45 super(msg, cause); 46 } 47 48 } 49 | Popular Tags |