summaryrefslogtreecommitdiff
path: root/valadate/assemblyerror.vala
diff options
context:
space:
mode:
authorchebizarro@gmail.com <chebizarro@gmail.com>2017-04-27 00:02:53 -0700
committerRico Tzschichholz <ricotz@ubuntu.com>2017-11-19 12:35:04 +0100
commite0dd2d7bdbbe7831e54430c5ecdda41550428724 (patch)
treecf626a00620b10e4dad675dbe7b1c7e0361f5c1c /valadate/assemblyerror.vala
parent1f57cf03fe03b50ecbbef191d49308125199ca18 (diff)
downloadvala-e0dd2d7bdbbe7831e54430c5ecdda41550428724.tar.gz
side-ported Valadate-2.0 to Vala test harness
Diffstat (limited to 'valadate/assemblyerror.vala')
-rw-r--r--valadate/assemblyerror.vala27
1 files changed, 27 insertions, 0 deletions
diff --git a/valadate/assemblyerror.vala b/valadate/assemblyerror.vala
new file mode 100644
index 000000000..aa1b57e82
--- /dev/null
+++ b/valadate/assemblyerror.vala
@@ -0,0 +1,27 @@
+/*
+ * Valadate - Unit testing library for GObject-based libraries.
+ * Copyright (C) 2016 Chris Daley <chebizarro@gmail.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Authors:
+ * Chris Daley <chebizarro@gmail.com>
+ */
+
+public errordomain Valadate.AssemblyError {
+ NOT_FOUND,
+ LOAD,
+ METHOD
+}