1 26 27 package org.objectweb.jonas_rar.deployment.api; 28 29 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException; 30 31 37 public class RarDeploymentDescException extends DeploymentDescException { 38 39 43 public RarDeploymentDescException() { 44 super(); 45 } 46 47 52 public RarDeploymentDescException(String message) { 53 super(message); 54 } 55 56 61 public RarDeploymentDescException(Throwable cause) { 62 super(cause); 63 } 64 65 71 public RarDeploymentDescException(String message, Throwable cause) { 72 super(message, cause); 73 } 74 75 } 76 | Popular Tags |