You are here

class ServicesClientConnectionException in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client_connection/include/exception.inc \ServicesClientConnectionException

@file Custom exception definitions

Hierarchy

Expanded class hierarchy of ServicesClientConnectionException

File

services_client_connection/include/exception.inc, line 8
Custom exception definitions

View source
class ServicesClientConnectionException extends Exception {

  /**
   * Save exception to log
   *
   * @param $severity
   *   Watchodg severity default set to ERROR
   */
  public function log($severity = WATCHDOG_ERROR) {
    watchdog('scc', check_plain($this
      ->getMessage()), array(), $severity);
  }

}

Members