Skip to content
Snippets Groups Projects
Select Git revision
  • 59c5f2a94c39086fcc1c60fbd793175d85226c3f
  • master default protected
  • hai
  • isaac
  • CheHao
  • Eldar
  • mpriymak
  • master-before-merging-with-hai
  • master-before-merging-with-isaac
  • rmi-working-before-merging-with-isaac
  • all-code-merged-by-hai-v1
11 results

comp90015_assignment2.iml

Blame
  • Forked from Ho Dac Hai / COMP90015-DSAss2-InfinityMonkeys-remaster
    Source project has a limited visibility.
    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);
        }
    }