Class VSystemException

All Implemented Interfaces:
Serializable

public class VSystemException extends RuntimeException
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 Details

    • VSystemException

      public VSystemException(String msg, Object... params)
      Constructor.
      Parameters:
      msg - the message
      params - the params
    • VSystemException

      public VSystemException(Exception e, String msg, Object... params)
      Constructor.
      Parameters:
      e - the cause exception
      msg - the message
      params - the params