java.io.InvalidObjectException#initCause ( )源码实例Demo

下面列出了java.io.InvalidObjectException#initCause ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: jdk1.8-source-analysis   文件: URL.java
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;
}
 
源代码2 项目: dragonwell8_jdk   文件: URL.java
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;
}
 
源代码3 项目: TencentKona-8   文件: URL.java
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;
}
 
源代码4 项目: JDKSourceCode1.8   文件: URL.java
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;
}
 
源代码5 项目: openjdk-jdk8u   文件: URL.java
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;
}
 
源代码6 项目: openjdk-jdk8u-backup   文件: URL.java
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;
}
 
源代码7 项目: Bytecoder   文件: URL.java
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;
}
 
源代码8 项目: jdk8u-jdk   文件: URL.java
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;
}
 
源代码9 项目: openjdk-jdk9   文件: URL.java
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;
}
 
源代码10 项目: jdk8u-jdk   文件: MappedMXBeanType.java
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;
    }
}
 
源代码11 项目: TencentKona-8   文件: MappedMXBeanType.java
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;
    }
}
 
源代码12 项目: jdk8u60   文件: MappedMXBeanType.java
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;
    }
}
 
源代码13 项目: openjdk-jdk9   文件: MappedMXBeanType.java
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;
    }
}
 
源代码14 项目: openjdk-jdk8u-backup   文件: MappedMXBeanType.java
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;
    }
}
 
源代码15 项目: Bytecoder   文件: ImmutableCollections.java
/**
  * 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#unmodifiable">List</a>,
  * <a href="Map.html#unmodifiable">Map</a>, or
  * <a href="Set.html#unmodifiable">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
  */
@java.io.Serial
 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.MapN.EMPTY_MAP;
                 } 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;
     }
 }
 
源代码16 项目: component-runtime   文件: LocalPartitionMapper.java
Object readResolve() throws ObjectStreamException {
    try {
        return new LocalPartitionMapper(component, name, plugin, loadDelegate());
    } catch (final IOException | ClassNotFoundException e) {
        final InvalidObjectException invalidObjectException = new InvalidObjectException(e.getMessage());
        invalidObjectException.initCause(e);
        throw invalidObjectException;
    }
}
 
源代码17 项目: component-runtime   文件: PartitionMapperImpl.java
Object readResolve() throws ObjectStreamException {
    try {
        return new PartitionMapperImpl(component, name, input, plugin, stream, loadDelegate());
    } catch (final IOException | ClassNotFoundException e) {
        final InvalidObjectException invalidObjectException = new InvalidObjectException(e.getMessage());
        invalidObjectException.initCause(e);
        throw invalidObjectException;
    }
}
 
源代码18 项目: component-runtime   文件: StreamingInputImpl.java
protected Object readResolve() throws ObjectStreamException {
    try {
        return new StreamingInputImpl(component, name, plugin, loadDelegate(), retryConfiguration);
    } catch (final IOException | ClassNotFoundException e) {
        final InvalidObjectException invalidObjectException = new InvalidObjectException(e.getMessage());
        invalidObjectException.initCause(e);
        throw invalidObjectException;
    }
}
 
源代码19 项目: component-runtime   文件: InputImpl.java
protected Object readResolve() throws ObjectStreamException {
    try {
        return new InputImpl(component, name, plugin, loadDelegate());
    } catch (final IOException | ClassNotFoundException e) {
        final InvalidObjectException invalidObjectException = new InvalidObjectException(e.getMessage());
        invalidObjectException.initCause(e);
        throw invalidObjectException;
    }
}
 
源代码20 项目: openjdk-jdk9   文件: ImmutableCollections.java
/**
 * 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;
    }
}
 
 同类方法