
org.miv.mbox.CannotPostException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mbox2 Show documentation
Show all versions of mbox2 Show documentation
The message box acts as a buffer for incoming messages. Its major property is
to be usable from any thread. This allows any external source to post any
message at any time without having to wonder about synchronisation.
The newest version!
package org.miv.mbox;
/**
* Raised when a message cannot be posted for any reason
*
* @author Antoine Dutot
* @since 20061210
*/
public class CannotPostException extends Exception
{
private static final long serialVersionUID = -2683110426482658162L;
/**
* New post exception.
* @param message The reason.
*/
public CannotPostException( String message )
{
super( message );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy