001package org.biopax.paxtools.util;
002
003/**
004 * This exception is thrown if a problem occurs during an input/output operation related to BioPAX Handlers.
005 */
006public class BioPaxIOException extends RuntimeException
007{
008// --------------------------- CONSTRUCTORS ---------------------------
009
010        public BioPaxIOException(Throwable cause)
011        {
012                super(cause);
013        }
014
015        public BioPaxIOException(String message)
016        {
017                super(message);
018        }
019
020    public BioPaxIOException(String message, Throwable e) {
021        super(message, e);
022    }
023}