class MigrateException in Migrate 6.2
Same name and namespace in other branches
- 7.2 includes/exception.inc \MigrateException
@file Custom exception class for the migrate module.
Hierarchy
- class \MigrateException extends \Exception
Expanded class hierarchy of MigrateException
File
- includes/
exception.inc, line 8 - Custom exception class for the migrate module.
View source
class MigrateException extends Exception {
protected $level;
public function getLevel() {
return $this->level;
}
public function __construct($message, $level = Migration::MESSAGE_ERROR) {
$this->level = $level;
parent::__construct($message);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateException:: |
protected | property | ||
MigrateException:: |
public | function | ||
MigrateException:: |
public | function |