001 package edu.harvard.deas.hyperenc; 002 003 /** An exception thrown when a random source fails to create a page. */ 004 public class PageCreationException extends PageException 005 { 006 private static final long serialVersionUID = 1L; 007 008 public PageCreationException(String s) 009 { 010 super(s); 011 } 012 013 public PageCreationException(String s, Throwable cause) 014 { 015 super(s, cause); 016 } 017 }