persolijn

an efficient router for busses
Log | Files | Refs

OverflowException.java (345B)


      1 package protobuf.exception;
      2 
      3 public class OverflowException extends RuntimeException {
      4     public OverflowException(String message) {
      5         super(message);
      6     }
      7 
      8     public OverflowException(String message, Throwable cause) {
      9         super(message, cause);
     10     }
     11 
     12     public OverflowException(Throwable cause) {
     13         super(cause);
     14     }
     15 }