File ManagerCurrent Directory: wp-content/plugins/backwpup/vendor/inpsyde/plugin-environment-checker/src/ExceptionLinux appserver-0d5e4f1e-php-cc8da225320a42ba9b7d66cba40b1f03 6.6.123+ #1 SMP PREEMPT_DYNAMIC Wed Mar 11 09:04:28 UTC 2026 x86_64Edit File: ConstraintFailedException.php <?php namespace Inpsyde\EnvironmentChecker\Exception; use Inpsyde\EnvironmentChecker\Constraints\ConstraintInterface; use RuntimeException; class ConstraintFailedException extends RuntimeException implements ConstraintFailedExceptionInterface { /** @var ConstraintInterface */ protected $validator; /** @var mixed */ protected $subject; protected $errors; /** * @param ConstraintInterface $validator The failed validator. * @param mixed $subject The subject that was being validated. * @param array|string $errors An array of errors or the error string itself, * that represent errors. * @param string $message The error message. * @param int $code The error code. * @param array $previous The inner error. */ public function __construct( ConstraintInterface $validator, $subject, $errors, $message = '', $code = 0, $previous = null ) { parent::__construct($message, $code, $previous); $this->validator = $validator; $this->subject = $subject; $this->errors = $errors; } /** * @inheritDoc */ public function getValidator() { return $this->validator; } /** * @inheritDoc */ public function getValidationErrors() { return $this->errors; } /** * @inheritDoc */ public function getValidationSubject() { return $this->subject; } } Upload File Directory Listing NameTypeSizeActions.. (Parent Directory)DirConstraintFailedException.phpFile1.40 KB Rename | Delete | EditConstraintFailedExceptionInterface.phpFile736.00 B Rename | Delete | Edit