芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/ithemes-security-pro/core/Exception/WP_Error.php
error = $error; parent::__construct( wp_sprintf( '%l', $error->get_error_messages() ), 0, $previous ); } /** * Create a WP Error instance from an error code and message. * * @param string $code * @param string $message * @param array $data * * @return static */ public static function from_code( $code, $message, array $data = [] ) { return new static( new \WP_Error( $code, $message, $data ) ); } /** * Get the WP Error instance. * * @return \WP_Error */ public function get_error() { return $this->error; } }