mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
Remove orphaned GenericError class (#10500)
Originally introduced in https://github.com/matrix-org/matrix-react-sdk/pull/8329 All usages were removed in https://github.com/matrix-org/matrix-react-sdk/pull/9605 This error also has problems with showing tranlsated versions in the logs. Part of https://github.com/vector-im/element-web/issues/9597 We should be using the new `UserFriendlyError` for this kind of thing anyway. Introduced in https://github.com/matrix-org/matrix-react-sdk/pull/10440
This commit is contained in:
parent
d3cd44d44e
commit
2ebec3a3c7
1 changed files with 0 additions and 21 deletions
|
@ -1,21 +0,0 @@
|
|||
/*
|
||||
Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
export class GenericError extends Error {
|
||||
public constructor(public readonly message: string, public readonly description?: string | undefined) {
|
||||
super(message);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue