i am using Zend Framework Zend_Acl
i am wanting to throw an exception when the user is denied access to a resource. which exception class do i use?
AFAIK you don't have a specific exception for that, if that's what you're asking. Create your own exception class which extends from Zend_Exception
and throw that.