Package io.quarkus.vault.transit
Class VaultSigningBatchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.quarkus.vault.VaultException
-
- io.quarkus.vault.transit.VaultBatchException
-
- io.quarkus.vault.transit.VaultSigningBatchException
-
- All Implemented Interfaces:
Serializable
public class VaultSigningBatchException extends VaultBatchException
Batch exception thrown fromVaultTransitSecretEngine.decrypt(String, List)if any error occurs. The exception contains a map of errors with the associated message, and a map of successful sign.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VaultSigningBatchException(String message, Map<SigningRequest,SigningResult> results)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<SigningRequest,String>getErrors()Map<SigningRequest,String>getValid()-
Methods inherited from class io.quarkus.vault.transit.VaultBatchException
filter, getErrors, getValid
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
VaultSigningBatchException
public VaultSigningBatchException(String message, Map<SigningRequest,SigningResult> results)
-
-
Method Detail
-
getErrors
public Map<SigningRequest,String> getErrors()
-
getValid
public Map<SigningRequest,String> getValid()
-
-