You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gnosygnu_xowa/400_xowa/src/gplx/xowa/mediawiki/includes/libs/services/XomwNoSuchServiceException....

22 lines
652 B

package gplx.xowa.mediawiki.includes.libs.services;
import gplx.String_;
import gplx.xowa.mediawiki.XophpException;
import gplx.xowa.mediawiki.XophpRuntimeException;
/**
* Exception thrown when the requested service is not known.
*/
class XomwNoSuchServiceException extends XophpRuntimeException {
/**
* @param string $serviceName
* @param Exception|null $previous
*/
public XomwNoSuchServiceException(String serviceName) {this(serviceName, null);}
public XomwNoSuchServiceException(String serviceName, XophpException previous) {
super(String_.Format("No such service: {0}", serviceName), 0, previous);
}
}