* @param token The token to be put to the receiver.
* @exception NoRoomException If the receiver is full.
*/
public void put(Token token) {
if (!_queue.put(token)) {
throw new NoRoomException(getContainer(),
"Queue is at capacity of " + _queue.getCapacity()
+ ". Cannot put a token.");
}
}