summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/DOMException.java
blob: 06c461508403c0ef874e855e5af0e1b27a2c911f (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 DOMException extends java.lang.Exception
{
    
    /**
     * Creates a new instance of <code>SVGException</code> without detail message.
     */
    public DOMException()
    {
    }
    
    
    /**
     * Constructs an instance of <code>SVGException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public DOMException(String msg)
    {
        super(msg);
    }
}