/*
 * HeadUnlikeAHoleException.java
 *
 * Version:
 *    $Id$
 *
 * Revisions:
 *    $Log$
 */

/**
 * This exception gets thrown whenever the head is unlike a hole.
 *
 * @author Steve Streza
 */

public class HeadUnlikeAHoleException extends Exception{

     public HeadUnlikeAHoleException(String msg){
          super(msg);
     }

}
