01: package com.mysql.jdbc.exceptions;
02:
03: public class NotYetImplementedException extends RuntimeException {
04:
05: public NotYetImplementedException() {
06: // TODO Auto-generated constructor stub
07: }
08:
09: public NotYetImplementedException(String reason) {
10: super (reason);
11: // TODO Auto-generated constructor stub
12: }
13:
14: public NotYetImplementedException(Throwable cause) {
15: super (cause);
16: // TODO Auto-generated constructor stub
17: }
18: }
|