Package com.smartsheet.api
Class SmartsheetException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.smartsheet.api.SmartsheetException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
OAuthAuthorizationCodeException
,OAuthTokenException
,SmartsheetRestException
public class SmartsheetException extends java.lang.Exception
This is the base class for all exceptions thrown from the Smartsheet SDK.
Thread safety: Exceptions are not thread safe.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SmartsheetException(java.lang.Exception e)
Instantiates a new smartsheet exception.SmartsheetException(java.lang.String message)
Constructor.SmartsheetException(java.lang.String message, java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
SmartsheetException
public SmartsheetException(java.lang.String message)
Constructor.
- Parameters:
message
- the message
-
SmartsheetException
public SmartsheetException(java.lang.String message, java.lang.Throwable cause)
Constructor.
- Parameters:
message
- the messagecause
- the cause
-
SmartsheetException
public SmartsheetException(java.lang.Exception e)
Instantiates a new smartsheet exception.
- Parameters:
e
- the exception
-
-