using System; using InfluxDB.Client.Core.Exceptions; using InfluxDB.Client.Core.Flux.Domain; namespace InfluxDB.Client.Core.Flux.Exceptions { /// /// The error that occurs during mapping response to , or . /// public class FluxCsvParserException : InfluxException { public FluxCsvParserException(string message) : base(message) { } public FluxCsvParserException(string message, Exception exception = null) : base(message, exception) { } } }