mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01:00
13 lines
340 B
C#
13 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TweetLib.Utils.Serialization {
|
|
public sealed class SerializationSoftException : Exception {
|
|
public IList<string> Errors { get; }
|
|
|
|
internal SerializationSoftException(IList<string> errors) : base(string.Join(Environment.NewLine, errors)) {
|
|
this.Errors = errors;
|
|
}
|
|
}
|
|
}
|