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 segment). 26 */ 27 public class EmptyPathException extends RuntimeException 28 { 29 private static final long serialVersionUID = 1L; 30 31 public EmptyPathException() 32 { 33 } 34 35 public EmptyPathException(String message) 36 { 37 super(message); 38 } 39 40 public EmptyPathException(Throwable cause) 41 { 42 super(cause); 43 } 44 45 public EmptyPathException(String message, Throwable cause) 46 { 47 super(message, cause); 48 } 49 50 }