KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > util > ErrorLimitError


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