diff options
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/parser/JumpException.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/parser/JumpException.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/parser/JumpException.java b/theme-compiler/src/com/vaadin/sass/parser/JumpException.java new file mode 100644 index 0000000000..4d0f5923e9 --- /dev/null +++ b/theme-compiler/src/com/vaadin/sass/parser/JumpException.java @@ -0,0 +1,24 @@ +/* + * (c) COPYRIGHT 1999 World Wide Web Consortium + * (Massachusetts Institute of Technology, Institut National de Recherche + * en Informatique et en Automatique, Keio University). + * All Rights Reserved. http://www.w3.org/Consortium/Legal/ + * + * $Id: JumpException.java,v 1.1 1999/06/09 15:21:33 plehegar Exp $ + */ +package com.vaadin.sass.parser; + +/** + * @version $Revision: 1.1 $ + * @author Philippe Le Hegaret + */ +public class JumpException extends RuntimeException { + private static final long serialVersionUID = -2010286909393046205L; + + /** + * Creates a new JumpException + */ + public JumpException() { + } + +} |