1 26 27 28 package org.objectweb.jonas_ear.deployment.api; 29 30 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException; 31 32 38 public class EarDeploymentDescException extends DeploymentDescException { 39 40 44 public EarDeploymentDescException() { 45 super(); 46 } 47 48 53 public EarDeploymentDescException(String message) { 54 super(message); 55 } 56 57 62 public EarDeploymentDescException(Throwable cause) { 63 super(cause); 64 } 65 66 72 public EarDeploymentDescException(String message, Throwable cause) { 73 super(message, cause); 74 } 75 76 } 77 | Popular Tags |