1 22 package org.jboss.console.twiddle.command; 23 24 import org.jboss.util.NestedException; 25 26 32 public class CommandException 33 extends NestedException 34 { 35 39 45 public CommandException(String msg) { 46 super(msg); 47 } 48 49 56 public CommandException(String msg, Throwable nested) { 57 super(msg, nested); 58 } 59 60 66 public CommandException(Throwable nested) { 67 super(nested); 68 } 69 70 73 public CommandException() { 74 super(); 75 } 76 } 77 | Popular Tags |