BadGLOBPatternError.st
author Jan Vrany <jan.vrany@labware.com>
Wed, 02 Aug 2023 13:04:52 +0100
branchjv
changeset 25462 548cb62b20c7
parent 25458 484d5077ce16
permissions -rw-r--r--
Add `NonPositionableExternalStream >> #setLocalEcho:` and `#setOutputCRLF:`

"{ Encoding: utf8 }"

"{ Package: 'stx:libbasic' }"

"{ NameSpace: Smalltalk }"

BadMatchPatternError subclass:#BadGLOBPatternError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!BadGLOBPatternError class methodsFor:'documentation'!

documentation
"
    Raised if an invalid GLOB pattern is tried to be matched
    If unhandled, I proceed with nil (to be backward compatible
    with the previous match behaviour.

    [author:]
        cg
"
! !

!BadGLOBPatternError class methodsFor:'queries'!

isQuerySignal
    "I proceed if unhandled"

    ^ true

    "
     BadGLOBPatternError raiseAsQuery
    "

    "Created: / 25-06-2023 / 10:04:33 / cg"
! !

!BadGLOBPatternError class methodsFor:'documentation'!

version_CVS
    ^ '$Header$'! !