You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ThrowedParseException.java 710B

1234567891011121314151617181920212223242526
  1. /*
  2. * (c) COPYRIGHT 1999 World Wide Web Consortium
  3. * (Massachusetts Institute of Technology, Institut National de Recherche
  4. * en Informatique et en Automatique, Keio University).
  5. * All Rights Reserved. http://www.w3.org/Consortium/Legal/
  6. *
  7. * $Id: ThrowedParseException.java,v 1.1 1999/06/09 15:21:33 plehegar Exp $
  8. */
  9. package com.vaadin.sass.parser;
  10. /**
  11. * @version $Revision: 1.1 $
  12. * @author Philippe Le Hegaret
  13. */
  14. class ThrowedParseException extends RuntimeException {
  15. private static final long serialVersionUID = -7926371344505913546L;
  16. ParseException e;
  17. /**
  18. * Creates a new ThrowedParseException
  19. */
  20. ThrowedParseException(ParseException e) {
  21. this.e = e;
  22. }
  23. }