Struct java_properties::PropertiesError [] [src]

pub struct PropertiesError {
    // some fields omitted
}

The error type for reading and writing properties files.

Methods

impl PropertiesError
[src]

fn line_number(&self) -> Option<usize>

Returns the 1-based line number associated with the error, if available.

Trait Implementations

impl Debug for PropertiesError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Error for PropertiesError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

The lower-level cause of this error, if any. Read more

impl From<Error> for PropertiesError
[src]

fn from(e: Error) -> Self

Performs the conversion.

impl Display for PropertiesError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.