All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src-html.com.pusher.client.AuthorizationFailureException.html Maven / Gradle / Ivy

There is a newer version: 2.4.4
Show newest version



Source code



001package com.pusher.client;
002
003/**
004 * Used to indicate an authorization failure.
005 *
006 * @see com.pusher.client.Authorizer
007 */
008public class AuthorizationFailureException extends RuntimeException {
009
010    private static final long serialVersionUID = -7208133561904200801L;
011
012    public AuthorizationFailureException() {
013        super();
014    }
015
016    public AuthorizationFailureException(final String msg) {
017        super(msg);
018    }
019
020    public AuthorizationFailureException(final Exception cause) {
021        super(cause);
022    }
023
024    public AuthorizationFailureException(final String msg, final Exception cause) {
025        super(msg, cause);
026    }
027}
































































© 2015 - 2025 Weber Informatics LLC | Privacy Policy