mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 10:34:58 +00:00
31 lines
816 B
Java
31 lines
816 B
Java
/*
|
|
* @(#)ParseException.java
|
|
*
|
|
* Copyright (c) 1999-2012 Werner Randelshofer, Goldau, Switzerland.
|
|
* All rights reserved.
|
|
*
|
|
* You may not use, copy or modify this file, except in compliance with the
|
|
* license agreement you entered into with Werner Randelshofer.
|
|
* For details see accompanying license terms.
|
|
*/
|
|
package org.monte.media;
|
|
|
|
/**
|
|
* Exception thrown by IFFParse.
|
|
*
|
|
* @author Werner Randelshofer, Hausmatt 10, CH-6405 Goldau, Switzerland
|
|
* @version $Id: ParseException.java 299 2013-01-03 07:40:18Z werner $
|
|
*/
|
|
public class ParseException extends Exception {
|
|
|
|
public static final long serialVersionUID = 1L;
|
|
|
|
public ParseException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public ParseException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|