Ejemplo n.º 1
0
 /**
  * Constructs an ezcMailTransportSmtpException with the highlevel error
  * message $message.
  *
  * @param string $message
  */
 public function __construct($message)
 {
     parent::__construct($message);
 }
Ejemplo n.º 2
0
 /**
  * Constructs an ezcMailNoSuchMessageException
  *
  * @param mixed $messageId
  */
 public function __construct($messageId)
 {
     parent::__construct("The message with ID '{$messageId}' could not be found.");
 }
Ejemplo n.º 3
0
 /**
  * Constructs an ezcMailTransportException with low level information $message.
  *
  * @param string $message
  */
 public function __construct($message = '')
 {
     parent::__construct("An error occured while sending or receiving mail. " . $message);
 }
Ejemplo n.º 4
0
 /**
  * Constructs an ezcMailOffsetOutOfRangeException
  *
  * @param mixed $offset
  * @param mixed $count
  */
 public function __construct($offset, $count)
 {
     parent::__construct("The offset '{$offset}' is outside of the message subset '{$offset}', '{$count}'.");
 }
Ejemplo n.º 5
0
 /**
  * Constructs an ezcMailInvalidLimitException
  *
  * @param mixed $offset
  * @param mixed $count
  */
 public function __construct($offset, $count)
 {
     parent::__construct("The message count '{$count}' is not allowed for the message subset '{$offset}', '{$count}'.");
 }