package com.pocketreddit.library.authentication; public class AuthenticationException extends Exception { private static final long serialVersionUID = 1L; public AuthenticationException(String message) { super(message); } public AuthenticationException(String message, Throwable throwable) { super(message, throwable); } }