package org.gnu.pilotlink;

public class PilotLinkException extends Exception
{
    PilotLinkException()
    {
        super();
    }

    PilotLinkException(String s)
    {
        super(s);
    }
}

