44 lines
1000 B
Java
44 lines
1000 B
Java
|
|
package com.eactive.eai.agent.command;
|
|
|
|
/**
|
|
* 1. 기능 : Command Logic을 실행하다 발생될 User Define 오류를 처리하기 위한 Exception class<br>
|
|
* 2. 처리 개요 : Command Logic을 실행하다 발생될 User Define 오류를 처리하기 위한 Exception class<br>
|
|
* 3. 주의사항
|
|
*
|
|
* @author
|
|
* @version v 1.0.0
|
|
* @see 관련 기능을 참조
|
|
* @since
|
|
*
|
|
*/
|
|
public class CommandException extends Exception {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 1. 기능 : Default Constructor
|
|
* 2. 처리 개요 : Default Constructor
|
|
* 3. 주의사항
|
|
*
|
|
**/
|
|
public CommandException() {
|
|
super("CommandException is occured.");
|
|
}
|
|
|
|
/**
|
|
* 1. 기능 : Exception message를 초기화하는 Constructor
|
|
* 2. 처리 개요 : Exception message를 초기화하는 Constructor
|
|
* -
|
|
* 3. 주의사항
|
|
*
|
|
* @param msg Exception message
|
|
**/
|
|
public CommandException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|