List of usage examples for java.lang IllegalArgumentException subclass-usage
From source file edu.uci.ics.jung.exceptions.ConstraintViolationException.java
/** * * @author Joshua O'Madadhain */ public class ConstraintViolationException extends IllegalArgumentException { protected Predicate constraint;
From source file com.turn.shapeshifter.UnmappableValueException.java
/** * Thrown when a JSON value node cannot be correctly mapped to a Java object. * * @author jsilland */ @SuppressWarnings("serial")
From source file com.offbynull.voip.kademlia.model.BadNodeStateException.java
/**
* Thrown to indicate that the input node was in an incorrect state for the operation to be performed on it.
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.offbynull.voip.kademlia.model.BaseIdMatchException.java
/**
* Thrown to indicate that the input ID matches the ID of the Kademlia node being operated on.
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.offbynull.voip.kademlia.model.NodeNotFoundException.java
/**
* Thrown to indicate that the input node wasn't found.
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.comcast.video.dawg.common.exceptions.DawgIllegalArgumentException.java
/**
* A {@link DawgIllegalArgumentException} is simply an
* {@link IllegalArgumentException} associated with dawg. This exception is
* designed for controller methods that want to return HTTP 400 responses when
* the parameters passed to them couldn't be handled.
*
From source file com.offbynull.voip.kademlia.model.LinkMismatchException.java
/**
* Thrown to indicate that the link of input node didn't match with the link of an existing node with the same ID.
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.offbynull.voip.kademlia.model.IdLengthMismatchException.java
/**
* Thrown to indicate that the bit length of input ID doesn't match (is too large or too small).
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.offbynull.voip.kademlia.model.IdPrefixMismatchException.java
/**
* Thrown to indicate that the prefix of the input ID doesn't match.
* <p>
* Class is immutable.
* @author Kasra Faghihi
*/
From source file com.sworddance.util.ApplicationIllegalArgumentException.java
/**
* An application-specific {@link IllegalArgumentException} so that it is possible
* to test for and distinguish an 'expected' exception rather than an exception generated
* by the jdk or other package.
*
* @author Patrick Moore