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
p-mazhnik
2022-11-22 15:54:29 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4cba1c12c2206dbd633fe60d0fc2352ae9a85da9
4cba1c12
1 parent
de4efd5b
add toString method to MobileScannerException
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
lib/src/mobile_scanner_exception.dart
lib/src/mobile_scanner_exception.dart
View file @
4cba1c1
class
MobileScannerException
implements
Exception
{
String
message
;
MobileScannerException
(
this
.
message
);
@override
String
toString
()
{
return
"MobileScannerException:
$message
"
;
}
}
...
...
Please
register
or
login
to post a comment