~hkdb/geary/disco-3.34.1

« back to all changes in this revision

Viewing changes to src/engine/rfc822/rfc822-error.vala

  • Committer: hkdb
  • Date: 2019-10-08 10:54:21 UTC
  • Revision ID: hkdb@3df.io-20191008105421-3dkwnpnhcamm77to
Tags: upstream-3.34.1-disco
ImportĀ upstreamĀ versionĀ 3.34.1-disco

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2016 Software Freedom Conservancy Inc.
 
2
 *
 
3
 * This software is licensed under the GNU Lesser General Public License
 
4
 * (version 2.1 or later).  See the COPYING file in this distribution.
 
5
 */
 
6
 
 
7
public errordomain Geary.RFC822Error {
 
8
    INVALID,
 
9
    NOT_FOUND,
 
10
    FAILED
 
11
}
 
12