javabc 0.1.2

Java bytecode manipulation library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error_chain! {
    foreign_links {
        Io(::std::io::Error);
    }

    errors {
        MalformedFile(message: String) {
            description("malformed file")
            display("malformed file: {}", message)
        }
    }
}