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