35 lines
794 B
C#
35 lines
794 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
|
|
namespace Intel.WebStorage
|
|
{
|
|
public class WebStorageException : Exception
|
|
{
|
|
|
|
public WebStorageException(string message)
|
|
: base(message) { }
|
|
|
|
public WebStorageException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
}
|
|
|
|
///<summary>
|
|
///An exception that is thrown when a connection exception occurs
|
|
///</summary>
|
|
public class WebStorageConnectionException : WebStorageException
|
|
{
|
|
|
|
public WebStorageConnectionException(string message)
|
|
: base(message) { }
|
|
|
|
|
|
public WebStorageConnectionException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
|
|
}
|
|
|
|
}
|