Remove initialization_exception.dart

This commit is contained in:
Dennis Fokin 2023-11-08 10:48:32 +01:00
parent ab476ef8ec
commit 26bc01d5c2
No known key found for this signature in database
GPG Key ID: 870B88256690D8BC
2 changed files with 0 additions and 27 deletions

View File

@ -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';

View File

@ -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]';
}
}