You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
464 B
29 lines
464 B
4 years ago
|
package com.fr.env.handler;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author hades
|
||
|
* @version 10.0
|
||
|
* Created by hades on 2021/8/11
|
||
|
*/
|
||
|
public class RefWrapper {
|
||
|
|
||
|
private final Throwable throwable;
|
||
|
|
||
|
private final String link;
|
||
|
|
||
|
|
||
|
public RefWrapper(Throwable throwable, String link) {
|
||
|
this.throwable = throwable;
|
||
|
this.link = link;
|
||
|
}
|
||
|
|
||
|
public Throwable getThrowable() {
|
||
|
return throwable;
|
||
|
}
|
||
|
|
||
|
public String getLink() {
|
||
|
return link;
|
||
|
}
|
||
|
}
|