master

laravel/framework

Last updated at: 29/12/2023 09:21

PromptValidationException.php

TLDR

This file defines the PromptValidationException class in the Illuminate\Console namespace. It extends the RuntimeException class.

Classes

PromptValidationException

This class extends the RuntimeException class. It does not contain any additional functionality.

<?php

namespace Illuminate\Console;

use RuntimeException;

class PromptValidationException extends RuntimeException
{
}