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