当前位置: 首页>>代码示例>>Java>>正文


Java InvalidObjectException.initCause方法代码示例

本文整理汇总了Java中java.io.InvalidObjectException.initCause方法的典型用法代码示例。如果您正苦于以下问题:Java InvalidObjectException.initCause方法的具体用法?Java InvalidObjectException.initCause怎么用?Java InvalidObjectException.initCause使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.io.InvalidObjectException的用法示例。


在下文中一共展示了InvalidObjectException.initCause方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: fabricateNewURL

import java.io.InvalidObjectException; //导入方法依赖的package包/类
private URL fabricateNewURL()
            throws InvalidObjectException {
    // create URL string from deserialized object
    URL replacementURL = null;
    String urlString = tempState.reconstituteUrlString();

    try {
        replacementURL = new URL(urlString);
    } catch (MalformedURLException mEx) {
        resetState();
        InvalidObjectException invoEx = new InvalidObjectException(
                "Malformed URL: " + urlString);
        invoEx.initCause(mEx);
        throw invoEx;
    }
    replacementURL.setSerializedHashCode(tempState.getHashCode());
    resetState();
    return replacementURL;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:20,代码来源:URL.java

示例2: fabricateNewURL

import java.io.InvalidObjectException; //导入方法依赖的package包/类
private URL fabricateNewURL()
            throws InvalidObjectException {
    // create URL string from deserialized object
    URL replacementURL = null;
    String urlString = tempState.reconstituteUrlString();

    try {
        replacementURL = new URL(urlString);
    } catch (MalformedURLException mEx) {
        resetState();
        InvalidObjectException invoEx = new InvalidObjectException(
                "Malformed URL:  " + urlString);
        invoEx.initCause(mEx);
        throw invoEx;
    }
    replacementURL.setSerializedHashCode(tempState.getHashCode());
    resetState();
    return replacementURL;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:20,代码来源:URL.java

示例3: toJavaTypeData

import java.io.InvalidObjectException; //导入方法依赖的package包/类
Object toJavaTypeData(Object data)
    throws OpenDataException, InvalidObjectException {

    try {
        return Enum.valueOf(enumClass, (String) data);
    } catch (IllegalArgumentException e) {
        // missing enum constants
        final InvalidObjectException ioe =
            new InvalidObjectException("Enum constant named " +
            (String) data + " is missing");
        ioe.initCause(e);
        throw ioe;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:MappedMXBeanType.java

示例4: readResolve

import java.io.InvalidObjectException; //导入方法依赖的package包/类
/**
 * Creates and returns an immutable collection from this proxy class.
 * The instance returned is created as if by calling one of the
 * static factory methods for
 * <a href="List.html#immutable">List</a>,
 * <a href="Map.html#immutable">Map</a>, or
 * <a href="Set.html#immutable">Set</a>.
 * This proxy class is the serial form for all immutable collection instances,
 * regardless of implementation type. This is necessary to ensure that the
 * existence of any particular implementation type is kept out of the
 * serialized form.
 *
 * @return a collection created from this proxy object
 * @throws InvalidObjectException if the tag value is illegal or if an exception
 *         is thrown during creation of the collection
 * @throws ObjectStreamException if another serialization error has occurred
 * @since 9
 */
private Object readResolve() throws ObjectStreamException {
    try {
        if (array == null) {
            throw new InvalidObjectException("null array");
        }

        // use low order 8 bits to indicate "kind"
        // ignore high order 24 bits
        switch (tag & 0xff) {
            case IMM_LIST:
                return List.of(array);
            case IMM_SET:
                return Set.of(array);
            case IMM_MAP:
                if (array.length == 0) {
                    return ImmutableCollections.Map0.instance();
                } else if (array.length == 2) {
                    return new ImmutableCollections.Map1<>(array[0], array[1]);
                } else {
                    return new ImmutableCollections.MapN<>(array);
                }
            default:
                throw new InvalidObjectException(String.format("invalid flags 0x%x", tag));
        }
    } catch (NullPointerException|IllegalArgumentException ex) {
        InvalidObjectException ioe = new InvalidObjectException("invalid object");
        ioe.initCause(ex);
        throw ioe;
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:49,代码来源:ImmutableCollections.java

示例5: toJavaTypeData

import java.io.InvalidObjectException; //导入方法依赖的package包/类
public Object toJavaTypeData(Object data)
    throws OpenDataException, InvalidObjectException {

    try {
        return Enum.valueOf(enumClass, (String) data);
    } catch (IllegalArgumentException e) {
        // missing enum constants
        final InvalidObjectException ioe =
            new InvalidObjectException("Enum constant named " +
            (String) data + " is missing");
        ioe.initCause(e);
        throw ioe;
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:15,代码来源:MappedMXBeanType.java


注:本文中的java.io.InvalidObjectException.initCause方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。