Files
Umbraco-CMS/src/Umbraco.Core/Exceptions/ConnectionException.cs

13 lines
249 B
C#
Raw Normal View History

2017-07-20 11:21:28 +02:00
using System;
2017-05-30 10:50:09 +02:00
namespace Umbraco.Core.Exceptions
{
internal class ConnectionException : Exception
{
public ConnectionException(string message, Exception innerException) : base(message, innerException)
{
2017-07-20 11:21:28 +02:00
2017-05-30 10:50:09 +02:00
}
}
2017-07-20 11:21:28 +02:00
}