< Summary

Information
Class: Renci.SshNet.Security.Org.BouncyCastle.Utilities.MemoableResetException
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\util\MemoableResetException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 27
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
.ctor(...)100%10%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\util\MemoableResetException.cs

#LineLine coverage
 1using System;
 2
 3namespace Renci.SshNet.Security.Org.BouncyCastle.Utilities
 4{
 5    /**
 6     * Exception to be thrown on a failure to reset an object implementing Memoable.
 7     * <p>
 8     * The exception extends InvalidCastException to enable users to have a single handling case,
 9     * only introducing specific handling of this one if required.
 10     * </p>
 11     */
 12    internal class MemoableResetException
 13        : InvalidCastException
 14    {
 15        /**
 16         * Basic Constructor.
 17         *
 18         * @param msg message to be associated with this exception.
 19         */
 20        public MemoableResetException(string msg)
 021            : base(msg)
 022        {
 023        }
 24    }
 25
 26}
 27

Methods/Properties

.ctor(System.String)