1 /*
2 * @(#)EmptyPathException.java
3 *
4 * $Date: 2014-03-13 03:15:48 -0500 (Thu, 13 Mar 2014) $
5 *
6 * Copyright (c) 2011 by Jeremy Wood.
7 * All rights reserved.
8 *
9 * The copyright of this software is owned by Jeremy Wood.
10 * You may not use, copy or modify this software, except in
11 * accordance with the license agreement you entered into with
12 * Jeremy Wood. For details see accompanying license terms.
13 *
14 * This software is probably, but not necessarily, discussed here:
15 * https://javagraphics.java.net/
16 *
17 * That site should also contain the most recent official version
18 * of this software. (See the SVN repository for more details.)
19 */
20 package com.bric.multislider;
21
22 /**
23 * This indicates that a path had no shape data.
24 * <P>
25 * This means it had no lines, quadratic or cubic segments in it (although it may have had a MOVE_TO and a CLOSE
26 * segment).
27 */
28 public class EmptyPathException extends RuntimeException
29 {
30 private static final long serialVersionUID = 1L;
31
32 public EmptyPathException()
33 {
34 }
35
36 public EmptyPathException(String message)
37 {
38 super(message);
39 }
40
41 public EmptyPathException(Throwable cause)
42 {
43 super(cause);
44 }
45
46 public EmptyPathException(String message, Throwable cause)
47 {
48 super(message, cause);
49 }
50
51 }