source: josm/trunk/src/com/kitfox/svg/SVGParseException.java@ 4256

Last change on this file since 4256 was 4256, checked in by bastiK, 13 years ago

see #6560 - basic svg support, includes kitfox svgsalamander, r 98, patched

File size: 1.1 KB
Line 
1/*
2 * SVGException.java
3 *
4 * Created on May 12, 2005, 11:32 PM
5 *
6 * To change this template, choose Tools | Options and locate the template under
7 * the Source Creation and Management node. Right-click the template and choose
8 * Open. You can then make changes to the template in the Source Editor.
9 */
10
11package com.kitfox.svg;
12
13/**
14 *
15 * @author kitfox
16 */
17public class SVGParseException extends java.lang.Exception
18{
19 public static final long serialVersionUID = 0;
20
21 /**
22 * Creates a new instance of <code>SVGException</code> without detail message.
23 */
24 public SVGParseException()
25 {
26 }
27
28
29 /**
30 * Constructs an instance of <code>SVGException</code> with the specified detail message.
31 * @param msg the detail message.
32 */
33 public SVGParseException(String msg)
34 {
35 super(msg);
36 }
37
38 public SVGParseException(String msg, Throwable cause)
39 {
40 super(msg, cause);
41 }
42
43 public SVGParseException(Throwable cause)
44 {
45 super(cause);
46 }
47}
Note: See TracBrowser for help on using the repository browser.