Mesajı yakalanmamış istisna 'EppCommandsExceptions' 'Komut sözdizimi hatası': Ölümcül hata - İstisnalar

0 Cevap php

Fatal error: Uncaught exception 'EppCommandsExceptions' with message 'Required parameter missing'

Söz konusu grubu:

throw new EppCommandsExceptions($result->msg, $codigo); 

Neden bu hat üzerinde bu hatayı yaşıyorum?

On EppCommandsExceptions.class.php I have this class that extends Exception:

class EppCommandsExceptions extends Exception
{
    //could be empty.
}

Sonra, üzerine CommandsController.php var:

include_once('EppCommandsExceptions.class.php');

ve, daha sonra, kötü bir şey olur ise method1:

throw new EppCommandsExceptions($result->msg, $codigo);

later, on this same controller, another method2 that will run after method1, I have: if something goes bad with this too:

throw new EppCommandsExceptions($result->msg, $codigo);

Daha sonra ben, kontak bölümü için - method1

try
{
    $createdContact = $comandos->createContact($contactoVo);
}
catch(EppCommandsExceptions $e)
{
    $error .= 'Error Contact. Cód:'.$e->getCode().' Mensagem:'.$e->getMessage();
}

Ve daha sonra, etki alanı bölümü için: method2

try
{
    $createdDomain = $comandos->createDomain($domainVo);
}
catch(EppCommandsExceptions $e)
{
    $error .= 'Error Domain. Cód:'.$e->getCode().' Mensagem:'.$e->getMessage();
}

Is it because I'm using the same exception for both methods? Should I have one Exception class for EACH method? :s

Please advice, Thanks a lot. MEM

0 Cevap