All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.pdx.cs.joy.grader.poa.UnhandledExceptionEvent Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package edu.pdx.cs.joy.grader.poa;

public class UnhandledExceptionEvent {
  private final Throwable unhandledException;

  public UnhandledExceptionEvent(Throwable unhandledException) {
    this.unhandledException = unhandledException;
  }

  public Throwable getUnhandledException() {
    return unhandledException;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy