Skip to content
Snippets Groups Projects
Select Git revision
  • 3b21897219693152b35d3051ed45da352da16d91
  • master default protected
  • feat/cookie
  • feat/keyword
4 results

hashtable.c

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