class-wpml-translation-proxy-api-exception.php 260 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php /** * @author OnTheGo Systems */ class WPMLTranslationProxyApiException extends Exception { public function __construct( $message, $code = 0 ) { WPML_TranslationProxy_Com_Log::log_error( $message ); parent::__construct( $message, $code ); } }