// $Id: UncheckedXSLException.java 99 2005-02-28 21:37:53Z blindsey $

package com.jclark.xsl.tr;

import com.jclark.xsl.om.XSLException;

class UncheckedXSLException extends RuntimeException
{
    private XSLException e;

    UncheckedXSLException(XSLException e)
    { this.e = e; }

    XSLException getXSLException()
    { return e; }
}
