Vault
4.1
|
00001 /* 00002 Copyright c1997-2014 Trygve Isaacson. All rights reserved. 00003 This file is part of the Code Vault version 4.1 00004 http://www.bombaydigital.com/ 00005 License: MIT. See LICENSE.md in the Vault top level directory. 00006 */ 00007 00010 #include "vstringiterator.h" 00011 00012 #include "vexception.h" 00013 00014 void VStringIteratorThrowOutOfBoundsBegin() { 00015 throw VRangeException(VSTRING_COPY("Attempt to iterate backward beyond start of string.")); 00016 } 00017 00018 void VStringIteratorThrowOutOfBoundsEnd() { 00019 throw VRangeException(VSTRING_COPY("Attempt to iterate forward beyond end of string.")); 00020 }