Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2022-11-19 17:59:05 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
de06313c9bc6e2e4d706d5e9d05324326ddf5ded
de06313c
1 parent
00db01c7
replace error message with error code
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
lib/src/mobile_scanner_exception.dart
lib/src/mobile_scanner_exception.dart
View file @
de06313
import
'package:mobile_scanner/src/enums/mobile_scanner_error_code.dart'
;
/// This class represents an exception throzn by the mobile scanner.
class
MobileScannerException
implements
Exception
{
String
message
;
MobileScannerException
(
this
.
message
);
MobileScannerException
({
required
this
.
errorCode
});
/// The error code of the exception.
final
MobileScannerErrorCode
errorCode
;
}
...
...
Please
register
or
login
to post a comment