We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f07e61d commit f9b1b0eCopy full SHA for f9b1b0e
1 file changed
library/src/main/java/com/proxerme/library/event/error/ErrorEvent.java
@@ -3,13 +3,14 @@
3
import android.support.annotation.NonNull;
4
5
import com.proxerme.library.connection.ProxerException;
6
+import com.proxerme.library.event.IEvent;
7
8
/**
9
* TODO: Describe Class
10
*
11
* @author Ruben Gees
12
*/
-public abstract class ErrorEvent {
13
+public abstract class ErrorEvent implements IEvent<ProxerException> {
14
15
private ProxerException exception;
16
@@ -18,7 +19,8 @@ public ErrorEvent(@NonNull ProxerException exception) {
18
19
}
20
21
@NonNull
- public ProxerException getException() {
22
+ @Override
23
+ public final ProxerException getItem() {
24
return exception;
25
26
0 commit comments