WebViewUnavailableException.cs 1.0 KB

12345678910111213141516171819202122232425
  1. // Copyright (c) 2022 Vuplex Inc. All rights reserved.
  2. //
  3. // Licensed under the Vuplex Commercial Software Library License, you may
  4. // not use this file except in compliance with the License. You may obtain
  5. // a copy of the License at
  6. //
  7. // https://vuplex.com/commercial-library-license
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. namespace Vuplex.WebView {
  15. /// <summary>
  16. /// Indicates that the webview plugin is unavailable. Potential reasons
  17. /// include that the 3D WebView plugin for the platform isn't installed
  18. /// or that you're using an expired trial version of the asset.
  19. /// </summary>
  20. public class WebViewUnavailableException : System.Exception {
  21. public WebViewUnavailableException(string message) : base(message) {}
  22. }
  23. }