/** * JBoss, Home of Professional Open Source * Copyright Red Hat, Inc., and individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.aerogear.unifiedpush.message.exception; import org.jboss.aerogear.unifiedpush.message.sender.PushNotificationSender; /** * Thrown when {@link PushNotificationSender} failed to lock the resource it needs e.g. for establishing connection with Push Network. * * In such a case, the message will be considered not dispatched and messaging subsystem will try to deliver message later. */ public class SenderResourceNotAvailableException extends DispatchInitiationException { private static final long serialVersionUID = -3279031099595849939L; public SenderResourceNotAvailableException(String message, Throwable cause) { super(message, cause); } public SenderResourceNotAvailableException(String message) { super(message); } public SenderResourceNotAvailableException(Throwable cause) { super(cause); } }