/******************************************************************************
Binary Predicate Param Exception
----------------------------------------------------
Copyright (c) Gunnar Gotshalks. All Rights Reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and
without fee is hereby granted. 
*******************************************************************************/

package FlexOr.container;

/**
The exception is thrown whenever an attempt is made to access an element from an
empty container.
*/

@SuppressWarnings("serial")
public class BinPredParamException extends RuntimeException {

/** Exception without a message. */

  public BinPredParamException() { super(); }

/** Exception with a message. */

  public BinPredParamException(final String s) { super(s); }

}