You are here

public function MessageException::__construct in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

File

src/Flmngr/FileUploaderServer/lib/MessageException.php, line 18

Class

MessageException
Exception with a message. Thrown when we need to return JSON about the error.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\lib

Code

public function __construct($message) {
  parent::__construct();
  $this->message = (array) $message;
}