exceptionsTemplate top-level constant

String const exceptionsTemplate

Implementation

const String exceptionsTemplate = '''
class ServerException implements Exception {
  final String message;
  const ServerException([this.message = 'Server exception']);
}

class CacheException implements Exception {
  final String message;
  const CacheException([this.message = 'Cache exception']);
}
''';