Home | History | Annotate | Download | only in util
      1 package com.xtremelabs.robolectric.util;
      2 
      3 @SuppressWarnings("serial")
      4 public class I18nException extends RuntimeException {
      5 
      6 	public I18nException() {
      7 		super();
      8 	}
      9 
     10 	public I18nException(String arg0, Throwable arg1) {
     11 		super(arg0, arg1);
     12 	}
     13 
     14 	public I18nException(String arg0) {
     15 		super(arg0);
     16 	}
     17 
     18 	public I18nException(Throwable arg0) {
     19 		super(arg0);
     20 	}
     21 
     22 }
     23