diff options
author | Marvin W <git@larma.de> | 2019-09-10 20:55:24 +0200 |
---|---|---|
committer | Marvin W <git@larma.de> | 2019-09-16 23:31:11 +0200 |
commit | 87d64524c8e4397515be045901427e71b660134f (patch) | |
tree | 491a80731746c5b85d889901b4e37469feeb952d /plugins/crypto-vala/src/error.vala | |
parent | 784319a9c162896dbaaf3beb4a9f8ba777b149ff (diff) | |
download | dino-87d64524c8e4397515be045901427e71b660134f.tar.gz dino-87d64524c8e4397515be045901427e71b660134f.zip |
Add basic crypto-vala
Diffstat (limited to 'plugins/crypto-vala/src/error.vala')
-rw-r--r-- | plugins/crypto-vala/src/error.vala | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/crypto-vala/src/error.vala b/plugins/crypto-vala/src/error.vala new file mode 100644 index 00000000..c694dfc7 --- /dev/null +++ b/plugins/crypto-vala/src/error.vala @@ -0,0 +1,13 @@ +namespace Crypto { + +public errordomain Error { + ILLEGAL_ARGUMENTS, + GCRYPT +} + +internal void may_throw_gcrypt_error(GCrypt.Error e) throws GLib.Error { + if (((int)e) != 0) { + throw new Crypto.Error.GCRYPT(e.to_string()); + } +} +}
\ No newline at end of file |