-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Requests are automatically aborted when any applicable Interceptor.…
…resolve() method throws an Exception
- Loading branch information
Showing
6 changed files
with
133 additions
and
19 deletions.
There are no files selected for viewing
97 changes: 97 additions & 0 deletions
97
commons/src/main/java/org/restheart/plugins/InterceptorException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/*- | ||
* ========================LICENSE_START================================= | ||
* restheart-commons | ||
* %% | ||
* Copyright (C) 2019 - 2023 SoftInstigate | ||
* %% | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* =========================LICENSE_END================================== | ||
*/ | ||
|
||
package org.restheart.plugins; | ||
|
||
import org.restheart.utils.HttpStatus; | ||
|
||
/** | ||
* | ||
* @author Andrea Di Cesare {@literal <[email protected]>} | ||
*/ | ||
public class InterceptorException extends RuntimeException { | ||
/** | ||
* | ||
*/ | ||
private static final long serialVersionUID = -846615677223399751L; | ||
|
||
int statusCode = HttpStatus.SC_INTERNAL_SERVER_ERROR; | ||
|
||
/** | ||
* | ||
*/ | ||
public InterceptorException() { | ||
super(); | ||
} | ||
|
||
/** | ||
* | ||
* @param statusCode | ||
*/ | ||
public InterceptorException(int statusCode) { | ||
super(); | ||
this.statusCode = statusCode; | ||
} | ||
|
||
/** | ||
* | ||
* @param message | ||
*/ | ||
public InterceptorException(String message) { | ||
super(message); | ||
} | ||
|
||
/** | ||
* | ||
* @param message | ||
* @param statusCode | ||
*/ | ||
public InterceptorException(String message, int statusCode) { | ||
super(message); | ||
this.statusCode = statusCode; | ||
} | ||
|
||
/** | ||
* | ||
* @param message | ||
* @param cause | ||
*/ | ||
public InterceptorException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
/** | ||
* | ||
* @param message | ||
* @param statusCode | ||
* @param cause | ||
*/ | ||
public InterceptorException(String message, int statusCode, Throwable cause) { | ||
super(message, cause); | ||
this.statusCode = statusCode; | ||
} | ||
|
||
/** | ||
* @return the statusCode | ||
*/ | ||
public int getStatusCode() { | ||
return statusCode; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters