You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LocaleNotLoadedException.java 305B

12345678910111213
  1. package com.itmill.toolkit.terminal.gwt.client;
  2. public class LocaleNotLoadedException extends Exception {
  3. /**
  4. * Serial generated by Eclipse.
  5. */
  6. private static final long serialVersionUID = 2005227056545210838L;
  7. public LocaleNotLoadedException(String locale) {
  8. super(locale);
  9. }
  10. }