src/java.base/share/classes/java/security/cert/Extension.java
changeset 58242 94bb65cb37d3
parent 53563 a4b7ea85d668
equal deleted inserted replaced
58241:33de7752835c 58242:94bb65cb37d3
    92     /**
    92     /**
    93      * Generates the extension's DER encoding and writes it to the output
    93      * Generates the extension's DER encoding and writes it to the output
    94      * stream.
    94      * stream.
    95      *
    95      *
    96      * @param out the output stream
    96      * @param out the output stream
    97      * @exception IOException on encoding or output error.
    97      * @throws    IOException on encoding or output error.
    98      * @exception NullPointerException if {@code out} is {@code null}.
    98      * @throws    NullPointerException if {@code out} is {@code null}.
    99      */
    99      */
   100     void encode(OutputStream out) throws IOException;
   100     void encode(OutputStream out) throws IOException;
   101 }
   101 }