mirror of
https://github.com/jonasbark/swiftcontrol.git
synced 2026-02-18 00:17:40 +01:00
11 lines
172 B
Dart
11 lines
172 B
Dart
class SingleLineException implements Exception {
|
|
final String message;
|
|
|
|
SingleLineException(this.message);
|
|
|
|
@override
|
|
String toString() {
|
|
return message;
|
|
}
|
|
}
|