Fan.Sys.NullErr.make C# (CSharp) Method

make() public static method

public static make ( ) : NullErr
return NullErr
        public static new NullErr make()
        {
            return make("", (Err)null);
        }

Same methods

NullErr::make ( string msg ) : NullErr
NullErr::make ( string msg, Err cause ) : NullErr

Usage Example

Example #1
0
 public static void setCur(Locale locale)
 {
     if (locale == null)
     {
         throw NullErr.make().val;
     }
     m_cur = locale;
 }
All Usage Examples Of Fan.Sys.NullErr::make