package apz.pirichat.shared;

/*
    PiriNotConnectedException

    Our custom exception; this is thrown whenever we attempt to access a method
    if our socket is not connected

*/

public class PiriZeroLengthException extends PiriException
{
    private String mParam;

    public PiriZeroLengthException(String pParam)
    {
        super();
        mParam = pParam;
    }

    public String toString()
    {
        return "Parameter " + mParam + " was zero-length";
    }

}
