mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-16 17:34:08 +02:00
13 lines
367 B
C#
13 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TweetLib.Core.Serialization{
|
|
public sealed class SerializationSoftException : Exception{
|
|
public IList<string> Errors { get; }
|
|
|
|
public SerializationSoftException(IList<string> errors) : base(string.Join(Environment.NewLine, errors)){
|
|
this.Errors = errors;
|
|
}
|
|
}
|
|
}
|