You are here

public function MigrateException::__construct in Migrate 7.2

Same name and namespace in other branches
  1. 6.2 includes/exception.inc \MigrateException::__construct()

File

includes/exception.inc, line 33
Custom exception class for the migrate module.

Class

MigrateException
@file Custom exception class for the migrate module.

Code

public function __construct($message, $level = Migration::MESSAGE_ERROR, $status = MigrateMap::STATUS_FAILED) {
  $this->level = $level;
  $this->status = $status;
  parent::__construct($message);
}