1
2
3
4
5
6
/// An error that occurs when reading a SMILES string.
#[derive(Debug,PartialEq)]
pub enum Error {
    EndOfLine,
    Character(usize)
}