MWException: Remove deprecated methods

No callers in core or extensions.

Change-Id: I3e2dc615bcd23838cf096625a767a7cf50fea140
This commit is contained in:
Chad Horohoe 2014-05-12 14:36:15 -07:00 committed by BryanDavis
parent ec31759607
commit fefc89448d

View file

@ -177,31 +177,6 @@ class MWException extends Exception {
return $this->msg( 'internalerror', 'Internal error' );
}
/**
* Get a the ID for this error.
*
* @since 1.20
* @deprecated since 1.22 Use MWExceptionHandler::getLogId instead.
* @return string
*/
public function getLogId() {
wfDeprecated( __METHOD__, '1.22' );
return MWExceptionHandler::getLogId( $this );
}
/**
* Return the requested URL and point to file and line number from which the
* exception occurred
*
* @since 1.8
* @deprecated since 1.22 Use MWExceptionHandler::getLogMessage instead.
* @return string
*/
public function getLogMessage() {
wfDeprecated( __METHOD__, '1.22' );
return MWExceptionHandler::getLogMessage( $this );
}
/**
* Output the exception report using HTML.
*/