Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • livrable3
  • livrable2
3 results

README.md

Blame
  • WrongLoginException.java 204 B
    package tp09;
    
    public class WrongLoginException extends Exception
    {
        @Override
        public synchronized Throwable initCause(Throwable cause)
        {
            
            return super.initCause(cause);
        }
    }