diff --git a/lib/desktop/init.dart b/lib/desktop/init.dart index 37976ab7..2bd6ea03 100755 --- a/lib/desktop/init.dart +++ b/lib/desktop/init.dart @@ -29,7 +29,6 @@ import 'package:logging/logging.dart'; import 'package:screen_retriever/screen_retriever.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:window_manager/window_manager.dart'; -import 'package:yubico_authenticator/exception/initialization_exception.dart'; import '../app/app.dart'; import '../app/logging.dart'; diff --git a/lib/exception/initialization_exception.dart b/lib/exception/initialization_exception.dart deleted file mode 100644 index ac32e971..00000000 --- a/lib/exception/initialization_exception.dart +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2023 Yubico. - * - * 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. - */ - -class InitializationException implements Exception { - final String message; - - InitializationException(this.message); - - @override - String toString() { - return 'InitializationException[$message]'; - } -}