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

com.linkedin.r2.SizeLimitExceededException Maven / Gradle / Ivy

Go to download

Pegasus is a framework for building robust, scalable service architectures using dynamic discovery and simple asychronous type-checked REST + JSON APIs.

The newest version!
package com.linkedin.r2;

/**
 * Represents an error condition that exceeds certain size limit
 *
 * @author Ang Xu
 * @version $Revision: $
 */
public class SizeLimitExceededException extends Exception
{
  private static final long serialVersionUID = 1L;

  /**
   * Construct a new instance with specified message.
   *
   * @param message the message to be used for this exception.
   */
  public SizeLimitExceededException(String message)
  {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy