mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-03-25 02:13:27 -04:00
15 lines
333 B
C#
15 lines
333 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;
|
|
}
|
|
}
|