1 26 27 package org.objectweb.jonas_ws.deployment.api; 28 29 30 import org.objectweb.jonas_lib.deployment.api.DeploymentDescException; 31 32 38 39 public class WSDeploymentDescException extends DeploymentDescException { 40 41 45 public WSDeploymentDescException() { 46 super(); 47 } 48 49 55 public WSDeploymentDescException(String message) { 56 super(message); 57 } 58 59 66 public WSDeploymentDescException(String message, 67 Throwable cause) { 68 super(message, cause); 69 } 70 71 77 public WSDeploymentDescException(Throwable cause) { 78 super(cause); 79 } 80 81 } 82 | Popular Tags |