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

« back to all changes in this revision

Viewing changes to clc/modules/msgs/src/main/java/com/eucalyptus/component/NoSuchComponentException.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.component;
 
2
 
 
3
import com.eucalyptus.util.EucalyptusCloudException;
 
4
import com.eucalyptus.ws.WebServicesException;
 
5
 
 
6
public class NoSuchComponentException extends WebServicesException {
 
7
  
 
8
  public NoSuchComponentException( ) {//TODO:GRZE: go back here and review error reporting 
 
9
    super( );
 
10
  }
 
11
  
 
12
  public NoSuchComponentException( String message, Throwable ex ) {
 
13
    super( message, ex );
 
14
  }
 
15
  
 
16
  public NoSuchComponentException( String message ) {
 
17
    super( message );
 
18
  }
 
19
  
 
20
  public NoSuchComponentException( Throwable ex ) {
 
21
    super( ex );
 
22
  }
 
23
  
 
24
}