00001 /* 00002 * CommandExecException.java 00003 * 00004 * Created on June 9, 2005, 11:11 AM 00005 * Created by Detro - 566/2145 00006 */ 00007 00008 package org.jaebi.server.service.exception; 00009 00014 public class CommandExecException extends Exception { 00015 00019 public CommandExecException(String exceptionMessage) { 00020 super( exceptionMessage ); 00021 } 00022 00023 }