diff --git a/classes/MJException.class.php b/classes/MJException.class.php
deleted file mode 100644
index 6fb9ed4..0000000
--- a/classes/MJException.class.php
+++ /dev/null
@@ -1,66 +0,0 @@
-
- * @link
- * @package Majestic
- * @subpackage Core
- * @since
- * @version SVN: $Id$
- * @filesource $URL$
- */
-class MJException extends Exception
-{
- private $line_range = 6;
-
- public function terminate()
- {
- if (!DEBUG_ENABLE) {
- trigger_error($this->getMessage());
- throw new StaticPageException(500);
- }
-
- $return = "MJ Error: ";
- $return .= str_replace("\n", "
\n", $this->getMessage())."
\n";
-
- $trace = $this->getTrace();
-
- $file = reset($trace);
-
- //смещение в трейсе, указаное при вызове эксепшена (2й параметр). Нужно для более инофрмативного вывода
- if ($shift = abs($this->getCode())) {
- while($shift--) {
- $file = next($trace);
- }
- }
-
- if ($fp = fopen($file['file'], 'r')) {
- $error_line = $file['line'];
- $start = $error_line - $this->line_range;
- $end = $error_line + $this->line_range;
- $i = 1;
- $return .= "
"; - while ($line = fgets($fp, 4096) and $i<=$end) { - $line = htmlspecialchars($line); - if ($i >= $start && $i <= $end) { - if ($i == $error_line) $return .= '"; - fclose($fp); - } - - $return .= ''.$i.' '.$line.''; - else $return .= $i.' '.$line; - } - $i++; - } - $return .= "
".$this->getFile().' | '.$this->getLine().' |
".$row['file'].' | '.$row['line'].' |