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