diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-31 14:43:58 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-31 14:43:58 -0700 |
commit | 0053d133f8ff96aa4dedc1ff7e2754812ddfc79a (patch) | |
tree | cd051d1886646d0e2a444fe20ce89e10bba1c5a4 /rust/src/lib.rs | |
parent | e53215bc0c0126b624bf92df52a897a4603e044b (diff) | |
download | fatcat-0053d133f8ff96aa4dedc1ff7e2754812ddfc79a.tar.gz fatcat-0053d133f8ff96aa4dedc1ff7e2754812ddfc79a.zip |
correct EditgroupAlreadyAccepted response
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r-- | rust/src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 50a7d410..12ce0973 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -47,6 +47,10 @@ mod errors { description("external identifier doesn't match required pattern") display("external identifier doesn't match required pattern") } + EditgroupAlreadyAccepted(id: String) { + description("editgroup was already accepted") + display("attempted to accept an editgroup which was already accepted: {}", id) + } } } } |