001 package com.saelist.command; 002 003 public class CommandException extends Exception { 004 005 public CommandException(Exception exception) { 006 super(exception); 007 } 008 009 }