Atproto, add bound string
This commit is contained in:
parent
5bc903b2fa
commit
ee99f119f0
4 changed files with 62 additions and 0 deletions
|
|
@ -24,6 +24,8 @@ pub enum ParseError {
|
|||
Serde(#[from] serde_json::error::Error),
|
||||
#[error("Length of parsed object too long, max: {max:?}, got: {got:?}.")]
|
||||
Length { max: usize, got: usize },
|
||||
#[error("Length of parsed object too short, min: {min:?}, got: {got:?}.")]
|
||||
MinLength { min: usize, got: usize },
|
||||
#[error("Currently Did is enforced, cannot use handle, {handle:?}")]
|
||||
ForceDid { handle: String },
|
||||
#[error("Incorrectly formatted")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue