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