public void WhenIInputTheValue(int decimalInt)
        {
            var converter = new HexadecimalConverter();

            try
            {
                _result = converter.ConvertToHexadecimal(decimalInt);
            }
            catch (Exception e)
            {
                _exception = e;
            }
        }