mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-23 22:17:52 -05:00
16 lines
343 B
C#
16 lines
343 B
C#
using AudibleApi.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AudibleUtilities
|
|
{
|
|
public class ImportValidationException : AggregateException
|
|
{
|
|
public List<Item> Items { get; }
|
|
public ImportValidationException(List<Item> items, IEnumerable<Exception> exceptions) : base(exceptions)
|
|
{
|
|
Items = items;
|
|
}
|
|
}
|
|
}
|