forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve javadoc of PreventFurtherStepsException
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
6 changes: 4 additions & 2 deletions
6
core/runtime/src/main/java/io/quarkus/runtime/PreventFurtherStepsException.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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
package io.quarkus.runtime; | ||
|
||
/** | ||
* When this exception is thrown from a recorder method, then no other recorder steps | ||
* will be executed. | ||
* When this exception is thrown from a runtime init recorder method, then no other recorder steps | ||
* will be executed and the application will be terminated. | ||
* This is likely of very limited use, but it does allow us to boot the application up to a certain point | ||
* for example in AppCDS generation. | ||
* It can also be used for sidecar type scenarios where the sidecar is the same application but only performs | ||
* a small part of the bootstrap steps. | ||
*/ | ||
public final class PreventFurtherStepsException extends RuntimeException { | ||
} |