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

org.swisspush.redisques.exception.ResourceExhaustionException Maven / Gradle / Ivy

There is a newer version: 4.1.6
Show newest version
package org.swisspush.redisques.exception;

/**
 * 

Thrown when something cannot be done right now because some * resource is exhausted.

* *

For example not enough memory, connection pools or waiting queues * are full, etc.

*/ public class ResourceExhaustionException extends Exception { public ResourceExhaustionException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy