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

make() public static method

public static make ( string msg, Err cause ) : NotImmutableErr
msg string
cause Err
return NotImmutableErr
        public static new NotImmutableErr make(string msg, Err cause)
        {
            NotImmutableErr err = new NotImmutableErr();
              make_(err, msg, cause);
              return err;
        }

Same methods

NotImmutableErr::make ( ) : NotImmutableErr
NotImmutableErr::make ( string msg ) : NotImmutableErr

Usage Example

Esempio n. 1
0
 public virtual object toImmutable()
 {
     if (@typeof().isConst())
     {
         return(this);
     }
     throw NotImmutableErr.make(@typeof().ToString()).val;
 }
All Usage Examples Of Fan.Sys.NotImmutableErr::make