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

« back to all changes in this revision

Viewing changes to clc/modules/msgs/src/main/java/com/eucalyptus/binding/BindingException.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:
53
53
*    SOFTWARE, AND IF ANY SUCH MATERIAL IS DISCOVERED THE PARTY DISCOVERING
54
54
*    IT MAY INFORM DR. RICH WOLSKI AT THE UNIVERSITY OF CALIFORNIA, SANTA
55
55
*    BARBARA WHO WILL THEN ASCERTAIN THE MOST APPROPRIATE REMEDY, WHICH IN
56
 
*    THE REGENTS’ DISCRETION MAY INCLUDE, WITHOUT LIMITATION, REPLACEMENT
 
56
*    THE REGENTS' DISCRETION MAY INCLUDE, WITHOUT LIMITATION, REPLACEMENT
57
57
*    OF THE CODE SO IDENTIFIED, LICENSING OF THE CODE SO IDENTIFIED, OR
58
58
*    WITHDRAWAL OF THE CODE CAPABILITY TO THE EXTENT NEEDED TO COMPLY WITH
59
59
*    ANY SUCH LICENSES OR RIGHTS.
73
73
  }
74
74
 
75
75
  public BindingException( String arg0, Throwable arg1 ) {
76
 
    super( arg0, arg1, HttpResponseStatus.BAD_REQUEST );
 
76
    super( arg0, arg1, HttpResponseStatus.PRECONDITION_FAILED );
77
77
  }
78
78
 
79
79
  public BindingException( String arg0 ) {
80
 
    super( arg0, HttpResponseStatus.BAD_REQUEST );
 
80
    super( arg0, HttpResponseStatus.PRECONDITION_FAILED );
81
81
  }
82
82
 
83
83
  public BindingException( Throwable arg0 ) {
84
 
    super( arg0, HttpResponseStatus.BAD_REQUEST );
 
84
    super( arg0, HttpResponseStatus.PRECONDITION_FAILED );
85
85
  }
86
86
 
87
87
}