mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-21 07:23:03 +03:00
16 lines
364 B
Java
16 lines
364 B
Java
package ru.gravit.launcher.events;
|
|
|
|
public class ExceptionEvent extends RequestEvent {
|
|
public ExceptionEvent(Exception e) {
|
|
this.message = e.getMessage();
|
|
this.clazz = e.getClass().getName();
|
|
}
|
|
|
|
public final String message;
|
|
public final String clazz;
|
|
|
|
@Override
|
|
public String getType() {
|
|
return "exception";
|
|
}
|
|
}
|