alef 0.23.33

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
            // Unsupported parameter type for {{ param_name }}
            throw new {{ exception_class }}("{{ method_name }}: unsupported parameter shape", (Throwable) null);
        } catch (Throwable e) {
            if (e instanceof {{ exception_class }} ex) { throw ex; }
            throw new {{ exception_class }}("{{ method_name }}: failed", e);
        }
    }