App
AlreadyDisposedException.java
Go to the documentation of this file.
1 package mhr.appcore.exceptions;
2 
3 
8 
10  }
11 
12  public AlreadyDisposedException(String detailMessage) {
13  super(detailMessage);
14  }
15 
16  public AlreadyDisposedException(Throwable throwable) {
17  super(throwable);
18  }
19 
20  public AlreadyDisposedException(String detailMessage, Throwable throwable) {
21  super(detailMessage, throwable);
22  }
23 
24 }