view ar/com/hjg/pngj/PngjExceptionInternal.java @ 6:da7f11dcc6fd pngj

move
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 15 Apr 2016 10:36:51 +0200 (2016-04-15)
parents com/hjg/pngj/PngjExceptionInternal.java@3f418d4451d6
children
line wrap: on
line source
package ar.com.hjg.pngj;

/**
 * Exception for anomalous internal problems (sort of asserts) that point to some issue with the library
 * 
 * @author Hernan J Gonzalez
 * 
 */
public class PngjExceptionInternal extends RuntimeException {
  private static final long serialVersionUID = 1L;

  public PngjExceptionInternal(String message, Throwable cause) {
    super(message, cause);
  }

  public PngjExceptionInternal(String message) {
    super(message);
  }

  public PngjExceptionInternal(Throwable cause) {
    super(cause);
  }
}