Skip to content
Snippets Groups Projects
Select Git revision
  • d3ab9caf7aa0a8026888c86222e642bff2973c5a
  • main default protected
2 results

ExtendedException.java

Blame
  • ExtendedException.java 155 B
    package TP04.Exercice_3;
    
    public class ExtendedException extends Exception {
        public ExtendedException(String message) {
            super(message);
        }
    }