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 PiriAttributeNotFoundException extends PiriException
{
    private String mName;

    public PiriAttributeNotFoundException(String pName)
    {
        super();
        mName = pName;
    }

    public String toString()
    {
        return "Attribute " + mName + " not found";
    }

}
