blob: 9d662fb0e8e1d9f2c16da4cf41473a260f393cbc [file] [log] [blame]
// Copyright (c) 2014, the timezone project authors. Please see the AUTHORS
// file for details. All rights reserved. Use of this source code is governed
// by a BSD-style license that can be found in the LICENSE file.
class TimeZoneInitException implements Exception {
final String msg;
TimeZoneInitException(this.msg);
@override
String toString() => msg;
}
class LocationNotFoundException implements Exception {
final String msg;
LocationNotFoundException(this.msg);
@override
String toString() => msg;
}