public void WhenInitializedWith_MessageAndInnerExceptionConstructor()
        {
            var exception = new AlpacaSlavedException("message", new Exception());

            Assert.Equal(_expectedErrorCode, exception.AlpacaErrorCode);
        }
        public void WhenInitializedWith_EmptyConstructor()
        {
            var exception = new AlpacaSlavedException();

            Assert.Equal(_expectedErrorCode, exception.AlpacaErrorCode);
        }