OverflowException.java (345B) download
1package protobuf.exception;
2
3public 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}