Package io.vertigo.core.lang
Class VSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.vertigo.core.lang.VSystemException
- All Implemented Interfaces:
Serializable
Runtime exception for system-level errors in Vertigo.
Features:
- Message formatting with parameters
- Exception chaining with cause preservation
- No stack trace manipulation
Used for technical errors that should trigger immediate system attention.
- Author:
- fconstantin, pchretien, npiedeloup
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionVSystemException(Exception e, String msg, Object... params) Constructor.VSystemException(String msg, Object... params) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VSystemException
Constructor.- Parameters:
msg- the messageparams- the params
-
VSystemException
Constructor.- Parameters:
e- the cause exceptionmsg- the messageparams- the params
-