com.sun.msv.verifier.ValidationUnrecoverableException Maven / Gradle / Ivy
/*
* @(#)$Id: ValidationUnrecoverableException.java,v 1.8 2003/06/09 20:37:42 kk122374 Exp $
*
* Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package com.sun.msv.verifier;
import org.xml.sax.SAXParseException;
/**
* Exception that signals error was fatal and recovery was not possible.
*
* @author Kohsuke KAWAGUCHI
*/
public class ValidationUnrecoverableException extends SAXParseException
{
public ValidationUnrecoverableException( SAXParseException vv ) {
super(
vv.getMessage(), vv.getPublicId(), vv.getSystemId(),
vv.getLineNumber(), vv.getColumnNumber(), vv );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy