Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1200 → Rev 1201

/trunk/includes/classes/OIDplusHtmlException.class.php
0,0 → 1,56
<?php
 
/*
* OIDplus 2.0
* Copyright 2019 - 2023 Daniel Marschall, ViaThinkSoft
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
 
namespace ViaThinkSoft\OIDplus;
 
// phpcs:disable PSR1.Files.SideEffects
\defined('INSIDE_OIDPLUS') or die;
// phpcs:enable PSR1.Files.SideEffects
 
/**
* This kind of Exception can contain HTML code
*/
class OIDplusHtmlException extends OIDplusException {
 
/**
* @var string
*/
private $htmlMessage;
 
/**
* @param string $message In HTML format
* @param int $code
* @param \Throwable|null $previous
*/
public function __construct(string $message = "", int $code = 0, \Throwable $previous = null) {
$this->htmlMessage = $message;
$message = strip_tags($message);
$message = html_entity_decode($message, ENT_QUOTES, 'UTF-8');
 
parent::__construct($message, $code, $previous);
}
 
/**
* @return string
*/
public function getHtmlMessage(): string {
return $this->htmlMessage;
}
 
}