package com.dragonsoft.tryapp.common.exceptions;

/**
 * An application specific exception for I/O operations.
 */
public class TryIOException extends TryException {

    public TryIOException() {
        super();
    }

    public TryIOException(String string) {
        super(string);
    }

    public TryIOException(String arg0, Throwable arg1) {
        super(arg0, arg1);
    }

    public TryIOException(TryException e) {
        super(e);
    }

} //TryIOException