mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
31 lines
532 B
C#
31 lines
532 B
C#
// <auto-generated/> by Diplomat
|
|
|
|
#pragma warning disable 0105
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
using Devolutions.IronRdp.Diplomat;
|
|
#pragma warning restore 0105
|
|
|
|
namespace Devolutions.IronRdp;
|
|
|
|
#nullable enable
|
|
|
|
public partial class IronRdpException : Exception
|
|
{
|
|
private IronRdpError _inner;
|
|
|
|
public IronRdpException(IronRdpError inner) : base(inner.ToDisplay())
|
|
{
|
|
_inner = inner;
|
|
}
|
|
|
|
public IronRdpError Inner
|
|
{
|
|
get
|
|
{
|
|
return _inner;
|
|
}
|
|
}
|
|
}
|