package com.lgnortel.radiusclient;
/**
*
* Title: InvalidParameterException.java<br>
* Description:Define invalid parameter exception <br>
* Copyright: Copyright(c) 2008 LG-NORTEL ALL Rights Reserved<br>
* Company: LG-Nortel<br>
*
* @author SON TUNG NGUYEN
* @version 0.1
* @created Jan 21, 2009
* @modified Jan 21, 2009
* @product EFA R4.0 EMS
* @sw_block Security Management
*/
public class InvalidParameterException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Define default exception
*/
public InvalidParameterException() {
this("An Invalid Parameter was sent to this method!");
}
/**
* Constructs an InvalidParameterException with the specified message
*
* @param message
* message use to throw exception
*
*/
public InvalidParameterException(final String message) {
super(message);
}
}
|