Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

testten.crt

Blame
  • BugException.java 185 B
    package swen90006.machine;
    
    public class BugException extends Exception {
        public BugException(String msg){
            super("You triggered one of the security bugs!\n" + msg);
        }
    }