001package org.biopax.paxtools.io.sif;
002
003/**
004 * This exception is thrown when there are more than a maximum number of interactions generated.
005 */
006public class MaximumInteractionThresholdExceedException extends RuntimeException
007{
008        /**
009         * Constructor with the message.
010         * @param s message
011         */
012    public MaximumInteractionThresholdExceedException(String s)
013    {
014        super(s);
015    }
016}