~ubuntuone-client-engineering/droidcouch/trunk

« back to all changes in this revision

Viewing changes to src/se/msc/android/droidcouch/CouchNotFoundException.java

  • Committer: Igor
  • Date: 2010-01-07 12:40:44 UTC
  • Revision ID: git-v1:f59a39b97a8ebc0d17fafee44c96bc95e953ba91
First port commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package se.msc.android.droidcouch;
 
2
 
 
3
public class CouchNotFoundException extends CouchException {
 
4
        /**
 
5
         * 
 
6
         */
 
7
        private static final long serialVersionUID = 5472432541870905872L;
 
8
 
 
9
        public CouchNotFoundException(String msg, Exception e)
 
10
    {
 
11
                super(msg,e);
 
12
    }
 
13
 
 
14
}