ForbiddenException Constructor
|
Namespace:
Aruba.Cloud.Common.Exceptions
Assembly:
Aruba.Cloud.Common (in Aruba.Cloud.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic ForbiddenException(
string message = null,
string detail = null,
string type = "/permission-error"
)
Public Sub New (
Optional message As String = Nothing,
Optional detail As String = Nothing,
Optional type As String = "/permission-error"
)
public:
ForbiddenException(
String^ message = nullptr,
String^ detail = nullptr,
String^ type = L"/permission-error"
)
new :
?message : string *
?detail : string *
?type : string
(* Defaults:
let _message = defaultArg message null
let _detail = defaultArg detail null
let _type = defaultArg type "/permission-error"
*)
-> ForbiddenExceptionpublic function ForbiddenException(
message : String,
detail : String,
type : String
)
Parameters
- message (Optional)
- Type: SystemString
- detail (Optional)
- Type: SystemString
- type (Optional)
- Type: SystemString
See Also