Updates project to add powershell module
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace Lithnet.CredentialProvider
|
||||
{
|
||||
public class ClsidNotFoundException : NotFoundException
|
||||
{
|
||||
public ClsidNotFoundException() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public ClsidNotFoundException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ClsidNotFoundException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace Lithnet.CredentialProvider
|
||||
{
|
||||
public class NotFoundException : Exception
|
||||
{
|
||||
public NotFoundException() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public NotFoundException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public NotFoundException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace Lithnet.CredentialProvider
|
||||
{
|
||||
public class ProgIdNotFoundException : NotFoundException
|
||||
{
|
||||
public ProgIdNotFoundException() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public ProgIdNotFoundException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ProgIdNotFoundException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user