FileDocCategorySizeDatePackage
InvalidPathException.javaAPI DocExample292Thu Nov 08 00:22:56 GMT 2001com.ora.rmibook.chapter15.exceptions

InvalidPathException.java

package com.ora.rmibook.chapter15.exceptions;


public class InvalidPathException extends NamingException {
    public InvalidPathException(String description) {
        super (description);
    }

    public InvalidPathException() {
        super ("Path doesn't exist");
    }
}