Friday 3 September 2010

at agent.Agent.reply(Agent.java:434)

Exception in thread "main" java.lang.NullPointerException
        at agent.Agent.reply(Agent.java:434)
        at agent.Agent.communicate(Agent.java:421)
        at agent.Agent.doAllThis(Agent.java:307)
        at simulator.Simulator.loop(Simulator.java:75)
        at simulator.Simulator.<init>(Simulator.java:56)
        at simulator.Simulator.main(Simulator.java:116)

1 comment:

  1. class FunTimes{
    public static void main(String[] args){
    for(;;){
    try {
    throw new NullPointerException();
    } catch(NullPointerException e){
    Logger.
    getLogger(FunTimes.class).error(e,e);
    }
    }
    }
    }

    ReplyDelete