CreateSecurityError() public static method

public static CreateSecurityError ( string message ) : Exception
message string
return System.Exception
Exemplo n.º 1
0
 public static void CheckSafeLevel(RubyContext /*!*/ context, int level, string /*!*/ method)
 {
     if (level <= context.CurrentSafeLevel)
     {
         throw RubyExceptions.CreateSecurityError(String.Format("Insecure operation {0} at level {1}", method, context.CurrentSafeLevel));
     }
 }
Exemplo n.º 2
0
 public static void CheckSafeLevel(RubyContext /*!*/ context, int level)
 {
     if (level <= context.CurrentSafeLevel)
     {
         throw RubyExceptions.CreateSecurityError("Insecure operation at level " + context.CurrentSafeLevel);
     }
 }