Fan.Sys.Err.make_ C# (CSharp) Method

make_() public static method

public static make_ ( Err self ) : void
self Err
return void
        public static void make_(Err self)
        {
            make_(self, "");
        }

Same methods

Err::make_ ( Err self, string msg ) : void
Err::make_ ( Err self, string msg, Err cause ) : void

Usage Example

Ejemplo n.º 1
0
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
All Usage Examples Of Fan.Sys.Err::make_