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

org.fanout.pubcontrol.PublishFailedException Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
//        PublishFailedException.java
//        ~~~~~~~~~
//        This module implements the PublishFailedException exception.
//        :authors: Konstantin Bokarius.
//        :copyright: (c) 2015 by Fanout, Inc.
//        :license: MIT, see LICENSE for more details.

package org.fanout.pubcontrol;

/**
  This exception is used to indicate that a publish failed to complete.
 */
public class PublishFailedException extends Exception
{
    public PublishFailedException()
    {
    }

    public PublishFailedException(String message)
    {
        super(message);
    }

    public PublishFailedException(Throwable cause)
    {
        super(cause);
    }

    public PublishFailedException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy