package apz.pirichat.shared;

/*
    PiriNotFoundException

    Custom exception that is thrown whenever a vital object is not found

*/

public class PiriNotFoundException extends PiriException
{
    private String mName;

    public PiriNotFoundException(String pName)
    {
        super();
        mName = pName;
    }

    public String toString()
    {
        return "Attribute/Item/User " + mName + " not found";
    }

}
