001    /*
002     * SVGException.java
003     *
004     * Created on May 12, 2005, 11:32 PM
005     *
006     * To change this template, choose Tools | Options and locate the template under
007     * the Source Creation and Management node. Right-click the template and choose
008     * Open. You can then make changes to the template in the Source Editor.
009     */
010    
011    package com.kitfox.svg;
012    
013    /**
014     *
015     * @author kitfox
016     */
017    public class SVGParseException extends java.lang.Exception
018    {
019        public static final long serialVersionUID = 0;
020        
021        /**
022         * Creates a new instance of <code>SVGException</code> without detail message.
023         */
024        public SVGParseException()
025        {
026        }
027        
028        
029        /**
030         * Constructs an instance of <code>SVGException</code> with the specified detail message.
031         * @param msg the detail message.
032         */
033        public SVGParseException(String msg)
034        {
035            super(msg);
036        }
037        
038        public SVGParseException(String msg, Throwable cause)
039        {
040            super(msg, cause);
041        }
042        
043        public SVGParseException(Throwable cause)
044        {
045            super(cause);
046        }
047    }