We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af3e48 commit ea4fc79Copy full SHA for ea4fc79
modules/org.restlet/src/main/java/org/restlet/resource/ResourceException.java
@@ -38,13 +38,13 @@ public class ResourceException extends RuntimeException {
38
private static final long serialVersionUID = 1L;
39
40
/** The status associated to this exception. */
41
- private final Status status;
+ private final transient Status status;
42
43
/** The request associated to this exception. Could be null. */
44
- private final Request request;
+ private final transient Request request;
45
46
/** The response associated to this exception. Could be null. */
47
- private final Response response;
+ private final transient Response response;
48
49
/**
50
* Constructor.
0 commit comments