This is a Kotlin Multiplatform line-by-line transliteration port of dtolnay/thiserror.
Original Project: This port is based on dtolnay/thiserror. All design credit and project intent belong to the upstream authors; this repository is a faithful port to Kotlin Multiplatform with no behavioural changes intended.
This is an in-progress port. The goal is feature parity with the upstream Rust crate while providing a native Kotlin Multiplatform API. Every Kotlin file carries a // port-lint: source <path> header naming its upstream Rust counterpart so the AST-distance tool can track provenance.
The text below is reproduced and lightly edited from
https://github.com/dtolnay/thiserror. It is the upstream project's own description and remains under the upstream authors' authorship; links have been rewritten to absolute upstream URLs so they continue to resolve from this repository.
This library provides a convenient derive macro for the standard library's
std::error::Error trait.
[dependencies]
thiserror = "2"use thiserror::Error;
#[derive(Error, Debug)]
pub enum DataStoreError {
#[error("data store disconnected")]
Disconnect(#[from] io::Error),
#[error("the data for key `{0}` is not available")]
Redaction(String),
#[error("invalid header (expected {expected:?}, found {found:?})")]
InvalidHeader {
expected: String,
found: String,
},
#[error("unknown data store error")]
Unknown,
}-
Thiserror deliberately does not appear in your public API. You get the same thing as if you had written an implementation of
std::error::Errorby hand, and switching from handwritten impls to thiserror or vice versa is not a breaking change. -
Errors may be enums, structs with named fields, tuple structs, or unit structs.
-
A
Displayimpl is generated for your error if you provide#[error("...")]messages on the struct or each variant of your enum, as shown above in the example.The messages support a shorthand for interpolating fields from the error.
#[error("{var}")]⟶write!("{}", self.var)#[error("{0}")]⟶write!("{}", self.0)#[error("{var:?}")]⟶write!("{:?}", self.var)#[error("{0:?}")]⟶write!("{:?}", self.0)
These shorthands can be used together with any additional format args, which may be arbitrary expressions. For example:
#[derive(Error, Debug)] pub enum Error { #[error("invalid rdo_lookahead_frames {0} (expected < {max})", max = i32::MAX)] InvalidLookahead(u32), }
If one of the additional expression arguments needs to refer to a field of the struct or enum, then refer to named fields as
.varand tuple fields as.0.#[derive(Error, Debug)] pub enum Error { #[error("first letter must be lowercase but was {:?}", first_char(.0))] WrongCase(String), #[error("invalid index {idx}, expected at least {} and at most {}", .limits.lo, .limits.hi)] OutOfBounds { idx: usize, limits: Limits }, }
-
A
Fromimpl is generated for each variant that contains a#[from]attribute.The variant using
#[from]must not contain any other fields beyond the source error (and possibly a backtrace — see below). Usually#[from]fields are unnamed, but#[from]is allowed on a named field too.#[derive(Error, Debug)] pub enum MyError { Io(#[from] io::Error), Glob(#[from] globset::Error), }
-
The Error trait's
source()method is implemented to return whichever field has a#[source]attribute or is namedsource, if any. This is for identifying the underlying lower level error that caused your error.The
#[from]attribute always implies that the same field is#[source], so you don't ever need to specify both attributes.Any error type that implements
std::error::Erroror dereferences todyn std::error::Errorwill work as a source.#[derive(Error, Debug)] pub struct MyError { msg: String, #[source] // optional if field name is `source` source: anyhow::Error, }
-
The Error trait's
provide()method is implemented to provide whichever field has a type namedBacktrace, if any, as astd::backtrace::Backtrace. UsingBacktracein errors requires a nightly compiler with Rust version 1.73 or newer.use std::backtrace::Backtrace; #[derive(Error, Debug)] pub struct MyError { msg: String, backtrace: Backtrace, // automatically detected }
-
If a field is both a source (named
source, or has#[source]or#[from]attribute) and is marked#[backtrace], then the Error trait'sprovide()method is forwarded to the source'sprovideso that both layers of the error share the same backtrace. The#[backtrace]attribute requires a nightly compiler with Rust version 1.73 or newer.#[derive(Error, Debug)] pub enum MyError { Io { #[backtrace] source: io::Error, }, }
-
For variants that use
#[from]and also contain aBacktracefield, a backtrace is captured from within theFromimpl.#[derive(Error, Debug)] pub enum MyError { Io { #[from] source: io::Error, backtrace: Backtrace, }, }
-
Errors may use
error(transparent)to forward the source and Display methods straight through to an underlying error without adding an additional message. This would be appropriate for enums that need an "anything else" variant.#[derive(Error, Debug)] pub enum MyError { ... #[error(transparent)] Other(#[from] anyhow::Error), // source and Display delegate to anyhow::Error }
Another use case is hiding implementation details of an error representation behind an opaque error type, so that the representation is able to evolve without breaking the crate's public API.
// PublicError is public, but opaque and easy to keep compatible. #[derive(Error, Debug)] #[error(transparent)] pub struct PublicError(#[from] ErrorRepr); impl PublicError { // Accessors for anything we do want to expose publicly. } // Private and free to change across minor version of the crate. #[derive(Error, Debug)] enum ErrorRepr { ... }
-
See also the
anyhowlibrary for a convenient single error type to use in application code.
Use thiserror if you care about designing your own dedicated error type(s) so that the caller receives exactly the information that you choose in the event of failure. This most often applies to library-like code. Use Anyhow if you don't care what error type your functions return, you just want it to be easy. This is common in application-like code.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
dependencies {
implementation("io.github.kotlinmania:thiserror-kotlin:0.2.0")
}./gradlew build
./gradlew test- macOS arm64
- Linux x64
- Windows mingw-x64
- iOS arm64 / simulator-arm64 (Swift export + XCFramework)
- JS (browser + Node.js)
- Wasm-JS (browser + Node.js)
- Android (API 24+)
See AGENTS.md and CLAUDE.md for translator discipline, port-lint header convention, and Rust → Kotlin idiom mapping.
This Kotlin port is distributed under the same MIT license as the upstream dtolnay/thiserror. See LICENSE (and any sibling LICENSE-* / NOTICE files mirrored from upstream) for the full text.
Original work copyrighted by the thiserror authors.
Kotlin port: Copyright (c) 2026 Sydney Renee and The Solace Project.
Thanks to the dtolnay/thiserror maintainers and contributors for the original Rust implementation. This port reproduces their work in Kotlin Multiplatform; bug reports about upstream design or behavior should go to the upstream repository.