com.windowsazure.messaging.NotificationHubsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NotificationHubs Show documentation
Show all versions of NotificationHubs Show documentation
This package contains the JAVA SDK for Azure Notification Hubs.
The newest version!
package com.windowsazure.messaging;
@SuppressWarnings("serial")
public class NotificationHubsException extends Exception {
private int httpStatusCode;
public NotificationHubsException(String message, int httpStatusCode){
super(message);
this.httpStatusCode=httpStatusCode;
}
public int getHttpStatusCode(){
return this.httpStatusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy