< Summary

Information
Class: Renci.SshNet.Security.Org.BouncyCastle.Security.SecurityUtilityException
Assembly: Renci.SshNet
File(s): \home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\security\SecurityUtilityException.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 36
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%
.ctor(...)100%10%
.ctor(...)100%10%

File(s)

\home\appveyor\projects\ssh-net\src\Renci.SshNet\Security\BouncyCastle\security\SecurityUtilityException.cs

#LineLine coverage
 1using System;
 2
 3namespace Renci.SshNet.Security.Org.BouncyCastle.Security
 4{
 5#if FEATURE_BINARY_SERIALIZATION
 6    [Serializable]
 7#endif
 8    internal class SecurityUtilityException
 9    : Exception
 10    {
 11        /**
 12        * base constructor.
 13        */
 014        public SecurityUtilityException()
 015        {
 016        }
 17
 18    /**
 19         * create a SecurityUtilityException with the given message.
 20         *
 21         * @param message the message to be carried with the exception.
 22         */
 23        public SecurityUtilityException(
 24            string message)
 025      : base(message)
 026        {
 027        }
 28
 29    public SecurityUtilityException(
 30            string    message,
 31            Exception  exception)
 032      : base(message, exception)
 033        {
 034        }
 35    }
 36}