mismatcheddimensionexception.java

来自「GEo 地理操作源代码」· Java 代码 · 共 43 行

JAVA
43
字号
/************************************************************************************************** ** ** $Id: MismatchedDimensionException.java,v 1.2 2004/03/30 03:46:42 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/MismatchedDimensionException.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry;/** * Indicates that an operation cannot be completed properly because * of a mismatch in the dimensions of object attributes. * * @version 1.0 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> */public class MismatchedDimensionException extends IllegalArgumentException {    /**     * Serial number for interoperability with different versions.     */    private static final long serialVersionUID = 3138484331425225155L;    /**     * Creates an exception with no message.     */    public MismatchedDimensionException() {        super();    }        /**     * Creates an exception with the specified message.     *     * @param  message The detail message. The detail message is saved for      *         later retrieval by the {@link #getMessage()} method.     */    public MismatchedDimensionException(final String message) {        super(message);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?