Struts (No action instance for path)

Pessoal. To procurando uma alternativa pra este erro mais tá difícil. Olhem só:

struts-config.xml


...

<action
            path="/deletaAcao"
            type="br.com.furb.mvclego.struts.ActionDeletaAcao"
            parameter="idAcaoDeletar">
            <forward name="sucess" path="/listaAcoes" />
            <forward name="failure" path="/pages/falhaDeletarAcao.html" />
            <forward name="bankFailure"                path="/pages/falhaConexaoBanco.html" />            
        </action>

...

Este pacote EXISTE e a classe também.

Erro:

 The server encountered an internal error (No action instance for path /deletaAcao could be created) that prevented it from fulfilling this request.

Que isso?! Tem outras classes nesse pacote mapeadas no struts e tão funcionando na boa como:

        <action
            path="/cadastroAcao"
            type="br.com.furb.mvclego.struts.ActionCadastroAcao"
            name="cadastroAcaoForm">
            <forward name="sucess" path="/pages/sucessoCadastroAcao.html" />
            <forward name="failure" path="/pages/falhaCadastroAcao.html" />
            <forward name="bankFailure"   path="/pages/falhaConexaoBanco.html" />            
        </action>

Me ajudem por favor!

Abraço!

Att.
Pablo