~ubuntu-branches/ubuntu/raring/eucalyptus/raring

« back to all changes in this revision

Viewing changes to clc/modules/msgs/src/main/java/com/eucalyptus/auth/LdapException.java

  • Committer: Package Import Robot
  • Author(s): Brian Thomason
  • Date: 2011-11-29 13:17:52 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 185.
  • Revision ID: package-import@ubuntu.com-20111129131752-rq31al3ntutv2vvl
Tags: upstream-3.0.999beta1
ImportĀ upstreamĀ versionĀ 3.0.999beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.eucalyptus.auth;
 
2
 
 
3
public class LdapException extends Exception {
 
4
 
 
5
  private static final long serialVersionUID = 1L;
 
6
 
 
7
  public LdapException( ) {
 
8
    super( );
 
9
  }
 
10
 
 
11
  public LdapException( String message, Throwable cause ) {
 
12
    super( message, cause );
 
13
  }
 
14
 
 
15
  public LdapException( String message ) {
 
16
    super( message );
 
17
  }
 
18
 
 
19
  public LdapException( Throwable cause ) {
 
20
    super( cause );
 
21
  }
 
22
  
 
23
}