des09 / ktrwjr

Automatically exported from code.google.com/p/ktrwjr
0 stars 0 forks source link

Project wont rrun outside of GAE #26

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Encountered on OS / Browser (e.g. WinXP, IE8, FF3):
win7 chrome

Detailed description (please be as specific as possible):
This class has a hard ref to app engine:
https://code.google.com/p/ktrwjr/source/browse/trunk/ktrwjr/src/bufferings/ktr/w
jr/server/logic/WjrJUnit4MethodRunner.java:
   import com.google.apphosting.api.ApiProxy.OverQuotaException;

To fix, ck the class name instead of the class:
  if (result.getFailures().get(0).getException().getClass().getName().equals(

To work around, add this class to your project:
package com.google.apphosting.api;
public class ApiProxy
{
   public enum OverQuotaException {     
   }
}

Original issue reported on code.google.com by m...@systemsplanet.com on 5 Apr 2013 at 5:31