You are here

public function MigrateException::__construct in Migrate 6.2

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

File

includes/exception.inc, line 14
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) {
  $this->level = $level;
  parent::__construct($message);
}