JException [404]

Category not found
.../libraries/legacy/error/error.php:200
195 	public static function raise($level, $code, $msg, $info = null, $backtrace = false)
196 	{
197 		JLog::add('JError::raise() is deprecated.', JLog::WARNING, 'deprecated');
198 
199 		// Build error object
200 		$exception = new JException($msg, $code, $level, $info, $backtrace);
201 
202 		return self::throwError($exception);
203 	}
204 
205 	/**