Details
-
Bug
-
Status: Open
-
Trivial
-
Resolution: Unresolved
-
1.1
-
None
-
None
Description
when using @ToString directive on an exception with no arguments
@ToString("Invalid user name or password")
exception AuthenticationException()
generated C# method in exception class code doesn't surround the message with apostrophes thus can't be built.
public new String GetMessage()
{
return Invalid user name or password;
}