/*
* incorrectAddressTypeException.java
*
* Created on September 17, 2003, 10:50 AM
*/
/**
*
* @author Tazeen
*/
public class incorrectAddressTypeException extends java.lang.Exception {
/**
* Creates a new instance of incorrectAddressTypeException without detail message.
*/
public incorrectAddressTypeException() {
}
/**
* Constructs an instance of incorrectAddressTypeException with the specified detail message.
* @param msg the detail message.
*/
public incorrectAddressTypeException(String msg) {
super(msg);
}
}