|
| InvalidAccessException (string userName, ObjectName objectName) |
|
| InvalidAccessException (string userName, ObjectName objectName, 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...
|
|
Definition at line 22 of file InvalidAccessException.cs.
Deveel.Data.Security.InvalidAccessException.InvalidAccessException |
( |
string |
userName, |
|
|
ObjectName |
objectName |
|
) |
| |
|
inline |
Deveel.Data.Security.InvalidAccessException.InvalidAccessException |
( |
string |
userName, |
|
|
ObjectName |
objectName, |
|
|
string |
message |
|
) |
| |
|
inline |
Definition at line 27 of file InvalidAccessException.cs.
28 : base(SecurityErrorCodes.InvalidAccess, message) {
Describes the name of an object within a database.
static string Deveel.Data.Security.InvalidAccessException.BuildMessage |
( |
ObjectName |
objectName | ) |
|
|
inlinestaticprivate |
Definition at line 37 of file InvalidAccessException.cs.
38 if (objectName == null)
39 return "Cannot access the object: possibly not enough privileges.";
41 return String.Format(
"Cannot access the '{0}': possibly not enough privileges.", objectName);
A long string in the system.
ObjectName Deveel.Data.Security.InvalidAccessException.ObjectName |
|
getprivate set |
string Deveel.Data.Security.InvalidAccessException.UserName |
|
getprivate set |
The documentation for this class was generated from the following file: