OutOfCreditException 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 OutOfCreditException(
string message = "Insufficient credit",
string detail = "The user does not have enough credit",
string type = "/out-of-credit"
)
Public Sub New (
Optional message As String = "Insufficient credit",
Optional detail As String = "The user does not have enough credit",
Optional type As String = "/out-of-credit"
)
public:
OutOfCreditException(
String^ message = L"Insufficient credit",
String^ detail = L"The user does not have enough credit",
String^ type = L"/out-of-credit"
)
new :
?message : string *
?detail : string *
?type : string
(* Defaults:
let _message = defaultArg message "Insufficient credit"
let _detail = defaultArg detail "The user does not have enough credit"
let _type = defaultArg type "/out-of-credit"
*)
-> OutOfCreditExceptionpublic function OutOfCreditException(
message : String,
detail : String,
type : String
)
Parameters
- message (Optional)
- Type: SystemString
- detail (Optional)
- Type: SystemString
- type (Optional)
- Type: SystemString
See Also