1 23 24 package com.sun.enterprise.cli.framework; 25 26 public class CommandException extends java.lang.Exception 27 { 28 29 32 public CommandException() 33 { 34 } 35 36 37 41 public CommandException(String msg) 42 { 43 super(msg); 44 } 45 46 47 51 public CommandException(Throwable cause) 52 { 53 super(cause); 54 } 55 56 57 61 public CommandException(String msg, Throwable cause) 62 { 63 super(msg, cause); 64 } 65 66 } 67 68 69 | Popular Tags |