summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/svg/SVGException.java
blob: c985ea1cb6d0ed2f673e068f9ef6e10c64519c64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * SVGException.java
 *
 * Created on May 12, 2005, 11:32 PM
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package com.kitfox.svg;

/**
 *
 * @author kitfox
 */
public class SVGException extends java.lang.Exception
{
    public static final long serialVersionUID = 0;
    
    /**
     * Creates a new instance of <code>SVGException</code> without detail message.
     */
    public SVGException()
    {
    }
    
    
    /**
     * Constructs an instance of <code>SVGException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public SVGException(String msg)
    {
        super(msg);
    }
    
    public SVGException(String msg, Throwable cause)
    {
        super(msg, cause);
    }
    
    public SVGException(Throwable cause)
    {
        super(cause);
    }
}