001 package edu.upenn.cis.propbank_shen;
002
003
004 /**
005 This exception is thrown for processing corrupt
006 data in propbank formats.
007 @author Scott Cotton
008 */
009 public class CorruptDataException extends Exception {
010
011 public CorruptDataException(String msg) {
012 super(msg);
013 }
014
015 }