|
| MissingPrivilegesException (string userName, ObjectName objectName) |
|
| MissingPrivilegesException (string userName, ObjectName objectName, Privileges privileges) |
|
| MissingPrivilegesException (string userName, ObjectName objectName, string message) |
|
| MissingPrivilegesException (string userName, ObjectName objectName, Privileges privileges, string message) |
|
| SecurityException () |
|
| SecurityException (int errorCode) |
|
| SecurityException (string message) |
|
| SecurityException (int errorCode, string message) |
|
| SecurityException (string message, Exception innerException) |
|
| SecurityException (int errorCode, string message, Exception innerException) |
|
| ErrorException (int errorCode) |
|
| ErrorException (int errorCode, string message) |
|
| ErrorException () |
|
| ErrorException (string message) |
|
| ErrorException (string message, Exception innerException) |
|
| ErrorException (int errorCode, string message, Exception innerException) |
|
ErrorEvent | AsEvent (IEventSource source) |
| Transforms the error to an event to be passed to the diagnostics, given a source where this was generated. More...
|
|
Deveel.Data.Security.MissingPrivilegesException.MissingPrivilegesException |
( |
string |
userName, |
|
|
ObjectName |
objectName |
|
) |
| |
|
inline |
Deveel.Data.Security.MissingPrivilegesException.MissingPrivilegesException |
( |
string |
userName, |
|
|
ObjectName |
objectName, |
|
|
Privileges |
privileges |
|
) |
| |
|
inline |
Definition at line 27 of file MissingPrivilegesException.cs.
28 :
this(userName, objectName, privileges,
MakeMessage(userName, objectName, privileges)) {
static string MakeMessage(string userName, ObjectName objectName, Privileges privileges)
Deveel.Data.Security.MissingPrivilegesException.MissingPrivilegesException |
( |
string |
userName, |
|
|
ObjectName |
objectName, |
|
|
string |
message |
|
) |
| |
|
inline |
Deveel.Data.Security.MissingPrivilegesException.MissingPrivilegesException |
( |
string |
userName, |
|
|
ObjectName |
objectName, |
|
|
Privileges |
privileges, |
|
|
string |
message |
|
) |
| |
|
inline |
Definition at line 35 of file MissingPrivilegesException.cs.
36 : base(SecurityErrorCodes.MissingPrivileges, message) {
Describes the name of an object within a database.
static string Deveel.Data.Security.MissingPrivilegesException.MakeMessage |
( |
string |
userName, |
|
|
ObjectName |
objectName, |
|
|
Privileges |
privileges |
|
) |
| |
|
inlinestaticprivate |
Definition at line 48 of file MissingPrivilegesException.cs.
50 return String.Format(
"User '{0}' has not enough privileges to operate on the object '{1}'.", userName, objectName);
52 return String.Format(
"User '{0}' has not the privilege '{1}' on the object '{2}'.", userName, privileges, objectName);
A long string in the system.
ObjectName Deveel.Data.Security.MissingPrivilegesException.ObjectName |
|
getprivate set |
Privileges Deveel.Data.Security.MissingPrivilegesException.Privileges |
|
getprivate set |
string Deveel.Data.Security.MissingPrivilegesException.UserName |
|
getprivate set |
The documentation for this class was generated from the following file: