X-Git-Url: https://git.piment-noir.org/?p=Project_POO.git;a=blobdiff_plain;f=exo6%2FNotDigitException.java;fp=exo6%2FNotDigitException.java;h=0cd91fd9dbbadd7f1e7bd7018f028ea521a91be5;hp=0000000000000000000000000000000000000000;hb=c70430542780ccdc90f1eceed659d016951aa2bd;hpb=0224c1a7463d47c2a48382c70bbaf8b52742ddd8 diff --git a/exo6/NotDigitException.java b/exo6/NotDigitException.java new file mode 100644 index 0000000..0cd91fd --- /dev/null +++ b/exo6/NotDigitException.java @@ -0,0 +1,24 @@ + +public class NotDigitException extends Exception { + + public NotDigitException() { + super(); + // TODO Auto-generated constructor stub + } + + public NotDigitException(String message) { + super(message); + // TODO Auto-generated constructor stub + } + + public NotDigitException(Throwable cause) { + super(cause); + // TODO Auto-generated constructor stub + } + + public NotDigitException(String message, Throwable cause) { + super(message, cause); + // TODO Auto-generated constructor stub + } + +}