File:  [Public] / java / classes / org / w3c / tools / resources / InvalidResourceException.java
Revision 1.5: download - view: text, annotated - select for diffs
Fri Oct 18 13:42:26 2013 UTC (12 years, 2 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
generics + raw types + serializer

// InvalidResourceException.java
// $Id: InvalidResourceException.java,v 1.5 2013/10/18 13:42:26 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.tools.resources;

/**
 * The resource is no more a valide resource.
 */

public class InvalidResourceException extends Exception {

    private static final long serialVersionUID = 9067537775196976895L;

    public InvalidResourceException(String id, String msg) {
        super("[" + id + "] loadResource failed: " + msg);
    }

    public InvalidResourceException(String parent,
                                    String child,
                                    String msg) {
        super("[" + parent + " , " + child + "] registerResource failed: " + msg);
    }
}



Webmaster