java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.s8.api.exceptions.S8IOException
- All Implemented Interfaces:
Serializable
S8 IO Exception
- Author:
- Pierre Convert Copyright (C) 2025, Pierre Convert. All rights reserved.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionS8IOException(String message) Main constructorS8IOException(String message, Class<?> type) Constructor for specific typeS8IOException(String message, Class<?> type, Exception cause) Constructor for type + cause catchingS8IOException(String message, Field field, Exception cause) Constructor for field + cause catchingS8IOException(String message, Method method, Exception cause) Constructor for method + cause catching -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
S8IOException
Main constructor- Parameters:
message- the main wrapped message
-
S8IOException
Constructor for specific type- Parameters:
message- the wrapped messagetype- the involved type
-
S8IOException
Constructor for type + cause catching- Parameters:
message- the wrapped messagetype- the involved typecause- the root cause exception
-
S8IOException
Constructor for field + cause catching- Parameters:
message- the wrapped messagefield- the involved fieldcause- the root cause
-
S8IOException
Constructor for method + cause catching- Parameters:
message- the wrapped messagemethod- the involved methodcause- the root cause
-
-
Method Details