You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Services/Scroll/ScrollManagerException.cs

21 lines
739 B

2 years ago
using System;
using System.Diagnostics.CodeAnalysis;
namespace Connected
{
[ExcludeFromCodeCoverage]
[Serializable]
public class ScrollManagerException : Exception
{
public ScrollManagerException() : base() { }
public ScrollManagerException(string message) : base(message) { }
public ScrollManagerException(string message, Exception inner) : base(message, inner) { }
// A constructor is needed for serialization when an
// exception propagates from a remoting server to the client.
protected ScrollManagerException(System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
}