summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/SVGException.java
blob: 3133adfd6b8af9a99706742ce4954397de32496d (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
/*
 * SVGException.java
 *
 * Created on April 12, 2007, 1:15 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg;

/**
 *
 * @author kitfox
 */
public class SVGException extends java.lang.Exception
{
    
    /**
     * 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);
    }
}