Encrypted messaging app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
229 B

  1. class UpdateDataException implements Exception {
  2. final String _message;
  3. UpdateDataException([
  4. this._message = 'An error occured while updating data.',
  5. ]);
  6. @override
  7. String toString() {
  8. return _message;
  9. }
  10. }