/*
 * $Id$
 *
 * @COPYRIGHT@
 */
package com.ncube.oda.util;

import java.io.*;

/**
 * <para>
 * This exception is thrown to indicate that a URI specifier is 
 * illegally formatted.
 * </para>
 *
 * @author <link url="mailto:oda_eng@ncube.com">ODA Development Team</link>
 * @version $Revision$  
 * @see URI
 */
final public class MalformedURIException extends IOException {
    public MalformedURIException() {
        super("Malformed URI");
    }

    public MalformedURIException(String message) {
        super(message);
    }
}
