Roll android_tools support library to 25.1.0
[android_tools.git] / sdk / sources / android-23 / java / util / IllegalFormatFlagsException.java
blob4946c55d8b9273105286a6f450a8712edbfe7b9e
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package java.util;
19 import java.io.Serializable;
21 /**
22 * An {@code IllegalFormatFlagsException} will be thrown if the combination of
23 * the format flags is illegal.
25 * @see java.lang.RuntimeException
27 public class IllegalFormatFlagsException extends IllegalFormatException implements Serializable {
28 private static final long serialVersionUID = 790824L;
30 private final String flags;
32 /**
33 * Constructs a new {@code IllegalFormatFlagsException} with the specified
34 * flags.
36 * @param flags
37 * the specified flags.
39 public IllegalFormatFlagsException(String flags) {
40 if (flags == null) {
41 throw new NullPointerException("flags == null");
43 this.flags = flags;
46 /**
47 * Returns the flags that are illegal.
49 * @return the flags that are illegal.
51 public String getFlags() {
52 return flags;
55 @Override
56 public String getMessage() {
57 return flags;