001package co.codewizards.cloudstore.core.auth;
002
003public class SignatureException extends RuntimeException {
004
005        private static final long serialVersionUID = 1L;
006
007        public SignatureException() {
008        }
009
010        public SignatureException(String message) {
011                super(message);
012        }
013
014        public SignatureException(Throwable cause) {
015                super(cause);
016        }
017
018        public SignatureException(String message, Throwable cause) {
019                super(message, cause);
020        }
021
022        public SignatureException(String message, Throwable cause,
023                        boolean enableSuppression, boolean writableStackTrace) {
024                super(message, cause, enableSuppression, writableStackTrace);
025        }
026
027}