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
|
|
|
|
}
|