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

com.windowsazure.messaging.NotificationHubsException Maven / Gradle / Ivy

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