// // Copyright 2014-2015 Amazon.com, // Inc. or its affiliates. All Rights Reserved. // // SPDX-License-Identifier: Apache-2.0 // using System; namespace Amazon.CognitoSync.SyncManager { /// <summary> /// This exception is thrown when the dataset operation exceeds certain limit, /// e.g. maximum of 20 datasets per identity, 1024 records per dataset, and 1mb /// in size per dataset, etc. /// </summary> #if !PCL [Serializable] #endif public class DataLimitExceededException : DataStorageException { /// <summary> /// Constructs a new DataLimitExceedException with the specified message and an existing exception object /// </summary> public DataLimitExceededException(string detailMessage, Exception ex) : base(detailMessage, ex) { } /// <summary> /// Constructs a new DataLimitExceedException with the specified message /// </summary> public DataLimitExceededException(string detailMessage) : base(detailMessage) { } /// <summary> /// Constructs a new DataLimitExceedException using an existing exception object /// </summary> public DataLimitExceededException(Exception ex) : base(ex.Message, ex) { } #if !PCL /// <summary> /// Constructs a new instance of the DataLimitExceededException class with serialized data. /// </summary> /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param> /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param> /// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception> /// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception> protected DataLimitExceededException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } #endif } }