src-html.com.pusher.client.AuthorizationFailureException.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pusher-java-client Show documentation
Show all versions of pusher-java-client Show documentation
This is a Java client library for Pusher, targeted at core Java and Android.
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