App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / taskqueue / UnsupportedTranslationException.java
blob442c3b145e7c675ff078f759f868d79ec4f80452
1 // Copyright 2010 Google Inc. All rights reserved.
2 package com.google.appengine.api.taskqueue;
4 import java.io.UnsupportedEncodingException;
6 /**
7 * Attempt to convert String to an unsupported charset.
9 */
10 public class UnsupportedTranslationException extends RuntimeException {
11 public UnsupportedTranslationException(String string, UnsupportedEncodingException exception) {
12 super(string, exception);
15 public UnsupportedTranslationException(UnsupportedEncodingException exception) {
16 super(exception);