com.causecode.fileuploader.StorageException.groovy Maven / Gradle / Ivy
/*
* Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are not permitted.
*/
package com.causecode.fileuploader
/**
* Exception class
* Exception is thrown if any Storage related error is encountered.
*/
class StorageException extends Exception {
StorageException(String msg) {
super(msg)
}
StorageException(String message, Throwable throwable) {
super(message, throwable)
}
}