diff options
author | crupest <crupest@outlook.com> | 2020-06-17 17:10:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-17 17:10:40 +0800 |
commit | 3dc9460798798e5ba155fae7b6afe84522c2c619 (patch) | |
tree | dd5e74d262b268f6ba7be5826a192bc42934cb35 /Timeline/Resources/Services/Exceptions.Designer.cs | |
parent | f737fed4f003fbeb7187629a7b730c64a87b72b9 (diff) | |
download | timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.tar.gz timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.tar.bz2 timeline-3dc9460798798e5ba155fae7b6afe84522c2c619.zip |
refactor(back): Refactor timeline service.
Diffstat (limited to 'Timeline/Resources/Services/Exceptions.Designer.cs')
-rw-r--r-- | Timeline/Resources/Services/Exceptions.Designer.cs | 56 |
1 files changed, 55 insertions, 1 deletions
diff --git a/Timeline/Resources/Services/Exceptions.Designer.cs b/Timeline/Resources/Services/Exceptions.Designer.cs index 84439716..1dbe11c9 100644 --- a/Timeline/Resources/Services/Exceptions.Designer.cs +++ b/Timeline/Resources/Services/Exceptions.Designer.cs @@ -97,6 +97,60 @@ namespace Timeline.Resources.Services { }
/// <summary>
+ /// Looks up a localized string similar to Image is in valid because {0}..
+ /// </summary>
+ internal static string ImageException {
+ get {
+ return ResourceManager.GetString("ImageException", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to image is not of required size.
+ /// </summary>
+ internal static string ImageExceptionBadSize {
+ get {
+ return ResourceManager.GetString("ImageExceptionBadSize", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to failed to decode image, see inner exception.
+ /// </summary>
+ internal static string ImageExceptionCantDecode {
+ get {
+ return ResourceManager.GetString("ImageExceptionCantDecode", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to unknown error.
+ /// </summary>
+ internal static string ImageExceptionUnknownError {
+ get {
+ return ResourceManager.GetString("ImageExceptionUnknownError", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to image's actual mime type is not the specified one.
+ /// </summary>
+ internal static string ImageExceptionUnmatchedFormat {
+ get {
+ return ResourceManager.GetString("ImageExceptionUnmatchedFormat", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to The timeline has no data..
+ /// </summary>
+ internal static string TimelineNoDataException {
+ get {
+ return ResourceManager.GetString("TimelineNoDataException", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Request timeline name is "{0}". If this is a personal timeline whose name starts with '@', it means the user does not exist and inner exception should be a UserNotExistException..
/// </summary>
internal static string TimelineNotExistException {
@@ -115,7 +169,7 @@ namespace Timeline.Resources.Services { }
/// <summary>
- /// Looks up a localized string similar to Request timeline name is "{0}". Request timeline post id is "{1}". The post does not exist because it has been deleted..
+ /// Looks up a localized string similar to Request timeline name is "{0}". Request timeline post id is "{1}". The post does not exist because it is deleted..
/// </summary>
internal static string TimelinePostNotExistExceptionDeleted {
get {
|