1 package polyglot.util;2 3 /** Exception thrown when the number of errors exceeds a limit. */4 public class ErrorLimitError extends RuntimeException 5 {6 public ErrorLimitError( String msg)7 {8 super( msg);9 }10 11 public ErrorLimitError()12 {13 super();14 }15 }16