summaryrefslogtreecommitdiffstats
path: root/awt/java/awt/color/CMMException.java
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2010-08-31 16:56:51 -0700
committerJesse Wilson <jessewilson@google.com>2010-08-31 16:56:51 -0700
commita173691c10a68d23638a3c947bdcfa859607eb7c (patch)
treedd7d11706a83882047f0d763cf88a3e2c5a512d3 /awt/java/awt/color/CMMException.java
parent1c07fd511df873d9c4b6dcd066529959f7809ff6 (diff)
downloadframeworks_native-a173691c10a68d23638a3c947bdcfa859607eb7c.zip
frameworks_native-a173691c10a68d23638a3c947bdcfa859607eb7c.tar.gz
frameworks_native-a173691c10a68d23638a3c947bdcfa859607eb7c.tar.bz2
Removing AWT. See bug 2732079
Change-Id: I0f29d1edbb90b081d743807605682cb64b53b1bc
Diffstat (limited to 'awt/java/awt/color/CMMException.java')
-rw-r--r--awt/java/awt/color/CMMException.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/awt/java/awt/color/CMMException.java b/awt/java/awt/color/CMMException.java
deleted file mode 100644
index 18b9a7e..0000000
--- a/awt/java/awt/color/CMMException.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/**
- * @author Oleg V. Khaschansky
- * @version $Revision$
- */
-package java.awt.color;
-
-/**
- * The CMMException is thrown as soon as a native CMM error occurs.
- *
- * @since Android 1.0
- */
-public class CMMException extends java.lang.RuntimeException {
-
- /**
- * The Constant serialVersionUID.
- */
- private static final long serialVersionUID = 5775558044142994965L;
-
- /**
- * Instantiates a new CMM exception with detail message.
- *
- * @param s
- * the detail message of the exception.
- */
- public CMMException (String s) {
- super (s);
- }
-}