FileGenerator.Native.NativeCodeGenerator.WriteCheckException C# (CSharp) Method

WriteCheckException() protected method

protected WriteCheckException ( bool throws ) : void
throws bool
return void
    protected void WriteCheckException(bool throws)
    {
      if (!throws)
        return;

      if (Class.IsStatic)
        WriteLine("MagickExceptionHelper.Check(exception);");
      else
        WriteLine("CheckException(exception);");
    }