Class UploadNotCompleteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- in.cs699.tensors.delagram.content_upload_service.exception.UploadNotCompleteException
-
- All Implemented Interfaces:
Serializable
public class UploadNotCompleteException extends Exception
A custom exception class to express the error that memory upload couldn't be completed- Author:
- swaroop_nath
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UploadNotCompleteException()
The default constructorUploadNotCompleteException(String message, org.springframework.http.HttpStatus status)
The parametrized constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.HttpStatus
getStatus()
A method to get the HTTP status which represents the type of error-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UploadNotCompleteException
public UploadNotCompleteException()
The default constructor
-
UploadNotCompleteException
public UploadNotCompleteException(String message, org.springframework.http.HttpStatus status)
The parametrized constructor- Parameters:
message
- The error messagestatus
- The HTTP Status code representing the form of issue
-
-