1 26 27 package org.objectweb.jonas_web.deployment.api; 28 29 30 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException; 31 32 38 public class WebContainerDeploymentDescException 39 extends DeploymentDescException { 40 41 45 public WebContainerDeploymentDescException() { 46 super(); 47 } 48 49 54 public WebContainerDeploymentDescException(String message) { 55 super(message); 56 } 57 58 64 public WebContainerDeploymentDescException(String message, 65 Throwable cause) { 66 super(message, cause); 67 } 68 69 74 public WebContainerDeploymentDescException(Throwable cause) { 75 super(cause); 76 } 77 78 } 79 | Popular Tags |