JavaSystem.Err Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The "standard" error output stream.
[Android.Runtime.Register("err")]
public static Java.IO.PrintStream? Err { get; }
[<Android.Runtime.Register("err")>]
static member Err : Java.IO.PrintStream
Property Value
- Attributes
Remarks
The "standard" error output stream. This stream is already open and ready to accept output data.
Typically this stream corresponds to display output or another output destination specified by the host environment or user. By convention, this output stream is used to display error messages or other information that should come to the immediate attention of a user even if the principal output stream, the value of the variable out
, has been redirected to a file or other destination that is typically not continuously monitored.
Java documentation for java.lang.System.err
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.