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.
28 lines
464 B
28 lines
464 B
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; |
|
} |
|
}
|
|
|