Esempio n. 1
0
 public RepairHandler(string backend, Options options, RepairResults result)
 {
     m_backendurl = backend;
     m_options = options;
     m_result = result;
     
     if (options.AllowPassphraseChange)
         throw new Exception(Strings.Foresthash.PassphraseChangeUnsupported);
 }
Esempio n. 2
0
        public RepairHandler(string backend, Options options, RepairResults result)
        {
            m_backendurl = backend;
            m_options    = options;
            m_result     = result;

            if (options.AllowPassphraseChange)
            {
                throw new Exception(Strings.Foresthash.PassphraseChangeUnsupported);
            }
        }
Esempio n. 3
0
        public RepairHandler(string backend, Options options, RepairResults result)
        {
            m_backendurl = backend;
            m_options    = options;
            m_result     = result;

            if (options.AllowPassphraseChange)
            {
                throw new UserInformationException(Strings.Common.PassphraseChangeUnsupported, "PassphraseChangeUnsupported");
            }
        }