Skip to content
Snippets Groups Projects
Select Git revision
  • 2bcc55ec96b1eab077097bc2abcf5dd75d731d61
  • master default protected
2 results

BugException.java

  • 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);
        }
    }