Package krati.core.segment

Examples of krati.core.segment.SegmentOverflowException


            long pos = _segment.getAppendPosition();
           
            try {
                // check append position is in range
                if ((pos >> _addressFormat.getSegmentShift()) > 0) {
                    throw new SegmentOverflowException(_segment);
                }
               
                // append actual size
                _segment.appendInt(length);
               
View Full Code Here

TOP

Related Classes of krati.core.segment.SegmentOverflowException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.