1 /*** 2 * 3 */ 4 package com.fernsroth.squashfs.exception; 5 6 /*** 7 * 8 * @author Joseph M. Ferner (Near Infinity Corporation) 9 */ 10 public class SquashFSException extends Exception { 11 12 /*** 13 * serialization. 14 */ 15 private static final long serialVersionUID = -1413430130745668442L; 16 17 /*** 18 * constructor. 19 * @param message the message. 20 * @param cause the cause. 21 */ 22 public SquashFSException(String message, Throwable cause) { 23 super(message, cause); 24 } 25 26 /*** 27 * constructor. 28 * @param message the message. 29 */ 30 public SquashFSException(String message) { 31 super(message); 32 } 33 34 }